Files
flock/.gitea/workflows/main.yaml
T
Donavan Fritz 222006240c
Build flock Image / build (push) Has been cancelled
ci: use fritzlab/build-image@v1
Replaces inline docker login + metadata + build-push + tag-cleanup
with the shared build-image composite action. Standardizes on
CI_BOT_TOKEN (drops REGISTRY_PASSWORD).
2026-04-26 09:32:46 -05:00

24 lines
693 B
YAML

name: Build flock Image
on:
push:
branches: [main]
jobs:
build:
runs-on: fritzlab
steps:
- uses: actions/checkout@v4
- uses: https://code.fritzlab.net/fritzlab/build-image@v1
with:
image: code.fritzlab.net/fritzlab/flock
token: ${{ secrets.CI_BOT_TOKEN }}
org: fritzlab
name: flock
build-args: GIT_SHA=${{ github.sha }}
- name: Smoke-test image
run: |
docker run --rm code.fritzlab.net/fritzlab/flock:${{ github.run_number }} --help || true
docker run --rm --entrypoint /usr/local/bin/flock \
code.fritzlab.net/fritzlab/flock:${{ github.run_number }} || true