Skip to content

Commit

Permalink
attempt to fix docker builds
Browse files Browse the repository at this point in the history
  • Loading branch information
mkroli committed Apr 21, 2024
1 parent 7216844 commit b0cd88b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
container:
name: Container Images (${{ matrix.arch }})
needs: build
if: startsWith(github.ref, 'refs/tags/')
# if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -129,11 +129,12 @@ jobs:
platforms: ${{ matrix.arch }}
push: true
tags: ${{ steps.docker-meta.outputs.tags }}
provenance: false

container_manifest:
name: Container Manifest
needs: container
if: startsWith(github.ref, 'refs/tags/')
# if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -152,6 +153,7 @@ jobs:
flavor: |
latest=false
- name: Create and push tag manifest
if: startsWith(github.ref, 'refs/tags/')
run: |
docker buildx imagetools create \
-t ${{ steps.docker-meta.outputs.tags }} \
Expand Down

0 comments on commit b0cd88b

Please sign in to comment.