Files
flock/.gitea/workflows/main.yaml
T
Donavan Fritz 580b9afa33
flock / release (push) Successful in 47m37s
ci: push image to fritzlab-public org
This repo was transferred from fritzlab to fritzlab-public so the container
package's anonymous-pull access (governed by org visibility in Gitea 1.26.1)
remains open after the rest of fritzlab/* flips to limited.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-28 13:58:56 -05:00

25 lines
693 B
YAML

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