fix publish?
Some checks failed
kaniko / build (push) Failing after 11s
kaniko / prepare (push) Failing after 12s
build-airflow-image / build (push) Failing after 18s
Build images / build-and-push (push) Failing after 15s

This commit is contained in:
Julius Zeidler 2025-04-07 11:14:24 +02:00
parent dd666a0266
commit f073ceab52

View file

@ -1,22 +1,24 @@
name: build-airflow-image name: build-airflow-image
on: push on: push
jobs: jobs:
prepare: build:
runs-on: catthehacker runs-on: catthehacker
steps: steps:
- name: Checkout the repo - name: Checkout the repo
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Login to the registry - name: Setup Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Container Registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: ${{ env.REGISTRY }} registry: harbor.tech-tales.blog
username: ${{ github.actor }} username: robot$chris+airflow-pusher
password: ${{ secrets.PACKAGE_TOKEN }} password: ${{ secrets.HARBOR_PASSWORD }}
- name: Build and Pus - name: Build and Push
uses: docker/build-push-action@v6 uses: docker/build-push-action@v6
with: with:
push: true push: true
context: swiss-army-knife tags: harbor.tech-tales.blog/chris/airflow:${{ steps.extract_tag.outputs.tag }}
file: Dockerfile-alpine context: airflow-image
file: airflow-image/Dockerfile