Skip to content

Commit

Permalink
Merge pull request #4 from yuyuvn/remove-unused-arch
Browse files Browse the repository at this point in the history
Remove unused arch
  • Loading branch information
yuyuvn authored Jun 19, 2023
2 parents 8a58334 + eeb1d83 commit 87b7c99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
fi
docker buildx build . \
--platform linux/arm/v7,linux/arm64/v8,linux/amd64 \
--platform linux/arm64,linux/amd64 \
--build-arg GOLANG_BASE_IMAGE=golang:1.18-alpine \
--build-arg RELEASE_IMAGE=alpine:3.15 \
--push \
Expand All @@ -60,7 +60,7 @@ jobs:
--tag $ALPINE_IMAGE \
docker buildx build . \
--platform linux/arm/v7,linux/arm64/v8,linux/amd64 \
--platform linux/arm64,linux/amd64 \
--build-arg GOLANG_BASE_IMAGE=golang:1.18 \
--build-arg RELEASE_IMAGE=ubuntu:latest \
--push \
Expand Down
2 changes: 1 addition & 1 deletion bin/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ rm -f .out/*
GOOS=darwin GOARCH=amd64 go build -o .out/decrypter-$RELEASE_VERSION-darwin-amd64 cmd/decrypter/main.go
GOOS=darwin GOARCH=arm64 go build -o .out/decrypter-$RELEASE_VERSION-darwin-arm64 cmd/decrypter/main.go
GOOS=linux GOARCH=amd64 go build -o .out/decrypter-$RELEASE_VERSION-linux-amd64 cmd/decrypter/main.go
GOOS=linux GOARCH=arm go build -o .out/decrypter-$RELEASE_VERSION-linux-arm cmd/decrypter/main.go
GOOS=linux GOARCH=arm64 go build -o .out/decrypter-$RELEASE_VERSION-linux-arm64 cmd/decrypter/main.go
GOOS=windows GOARCH=amd64 go build -o .out/decrypter-$RELEASE_VERSION-windows-amd64 cmd/decrypter/main.go

0 comments on commit 87b7c99

Please sign in to comment.