datamine/.forgejo/workflows/devel.yml
Rose 0e14cca2eb
All checks were successful
Build OCI Images / build (push) Successful in 3m7s
💚 working ci builds for docker images
2024-08-01 00:38:16 -04:00

39 lines
1.2 KiB
YAML

name: Build OCI Images
on:
push:
branches: [devel]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- 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