name: Docker Image CI on: workflow_dispatch: env: jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - run: ls -la - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Log in to Gitea Container Registry uses: docker/login-action@v3 with: registry: git.lerch.org username: ${{ github.actor }} password: ${{ secrets.PACKAGE_PUSH }} - name: Build and push uses: docker/build-push-action@v6 with: context: zig-out/container platforms: linux/amd64,linux/arm64 # load: true # will not work for multiplatform push: true tags: ${{ github.repository }}:latest # - # if: always() # name: Sleep 5 min # run: sleep 300