Skip to content

Commit

Permalink
Fixed docker image templating
Browse files Browse the repository at this point in the history
  • Loading branch information
cromefire committed Oct 22, 2023
1 parent 9473d25 commit 4aeaab0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- docker: linux/arm/v6
go: arm
qemu: arm
dockerfile: alpine
dockerfile: alpine.Dockerfile
- docker: linux/arm/v7
go: arm
qemu: arm
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
uses: docker/[email protected]
with:
context: .
file: ${{ matrix.platform.dockerfile && '${{ matrix.platform.dockerfile }}.Dockerfile' || 'Dockerfile' }}
file: ${{ matrix.platform.dockerfile && matrix.platform.dockerfile || 'Dockerfile' }}
build-args: GOARCH=${{ matrix.platform.go }}
platforms: ${{ matrix.platform.docker }}
push: ${{ github.event_name != 'pull_request' }}
Expand Down

0 comments on commit 4aeaab0

Please sign in to comment.