Skip to content

Commit

Permalink
add linux/arm target
Browse files Browse the repository at this point in the history
Signed-off-by: Markus Blaschke <[email protected]>
  • Loading branch information
mblaschke committed Sep 18, 2022
1 parent a269822 commit 996f054
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
with:
context: .
file: ./${{ matrix.Dockerfile }}
platforms: linux/amd64,linux/arm64
platforms: linux/amd64,linux/arm64,linux/arm
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
with:
context: .
file: ./${{ matrix.Dockerfile }}
platforms: linux/amd64,linux/arm64
platforms: linux/amd64,linux/arm64,linux/arm
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ $(GOLANGCI_LINT_BIN):
#######################################

RELEASE_ASSETS = \
$(foreach GOARCH,amd64 arm64,\
$(foreach GOARCH,amd64 arm64 arm,\
$(foreach GOOS,linux darwin windows,\
release-assets/$(GOOS).$(GOARCH))) \

Expand Down

0 comments on commit 996f054

Please sign in to comment.