diff --git a/.github/workflows/release-docker.yaml b/.github/workflows/release-docker.yaml index bf16c7c..48dd2b7 100644 --- a/.github/workflows/release-docker.yaml +++ b/.github/workflows/release-docker.yaml @@ -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 }} diff --git a/.github/workflows/scheduled-docker.yaml b/.github/workflows/scheduled-docker.yaml index 9737bde..878e9f2 100644 --- a/.github/workflows/scheduled-docker.yaml +++ b/.github/workflows/scheduled-docker.yaml @@ -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 }} diff --git a/Makefile b/Makefile index b7a4c8c..cd00df6 100644 --- a/Makefile +++ b/Makefile @@ -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))) \