datamine/.forgejo/workflows/devel.yml
Rose b14d4a8f22
Some checks failed
Build OCI Images / build (push) Failing after 18s
idek anymore
2024-07-31 23:56:00 -04:00

43 lines
1.3 KiB
YAML

name: Build OCI Images
on:
push:
branches: [devel]
jobs:
build:
runs-on: ubuntu-latest
container:
image: node:21-alpine
steps:
- name: setup job
run: |
apk add --no-cache libc6-compat git zstd docker docker-cli
apk update
- name: Docker Buildx
uses: https://code.forgejo.org/docker/setup-buildx-action@v3
- name: Login to Docker Registry
uses: https://code.forgejo.org/docker/login-action@v3
with:
registry: git.thornbush.dev
username: ${{github.actor}}
password: ${{secrets.OAUTH_TOKEN}}
- name: build dispatch
uses: https://code.forgejo.org/docker/build-push-action@v6
with:
context: .
file: ./apps/dispatch/Dockerfile
push: true
tags: git.thornbush.dev/rose/datamine/dispatch:devel
- name: build ingest
uses: https://code.forgejo.org/docker/build-push-action@v6
with:
context: .
file: ./apps/ingest/Dockerfile
push: true
tags: git.thornbush.dev/rose/datamine/ingest:devel
- name: build dispatch
uses: https://code.forgejo.org/docker/build-push-action@v6
with:
context: .
file: ./apps/bot/Dockerfile
push: true
tags: git.thornbush.dev/rose/datamine/bot:devel