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