docker-swiss-army-knife/.forgejo/workflows/docker.yaml
Julius Zeidler 82ed517816
Some checks failed
build-airflow-image / build (push) Failing after 11s
Build images / build-and-push-arch (push) Failing after 15s
publish step
2025-04-02 19:01:38 +02:00

22 lines
546 B
YAML

name: build-airflow-image
on: push
jobs:
build:
runs-on: catthehacker
steps:
- name: Checkout the repo
uses: actions/checkout@v4
- name: Login to the registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.PACKAGE_TOKEN }}
- name: Build and Pus
uses: docker/build-push-action@v6
with:
push: true
context: swiss-army-knife
file: Dockerfile-alpine