Skip to content

Commit

Permalink
chore: Fix goreleaser configs
Browse files Browse the repository at this point in the history
  • Loading branch information
obalunenko committed Feb 9, 2024
1 parent 6877c4c commit a905a72
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ universal_binaries:
# If left as false, your end release might have both several macOS archives: amd64, arm64 and all.
#
# Defaults to false.
replace: true
replace: false

archives:
- id: cli
Expand Down
2 changes: 1 addition & 1 deletion scripts/build/app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ export GO_BUILD_LDFLAGS="-s -w \

rm -rf "${BIN_OUT}"

goreleaser build --skip-validate --clean --single-target --output "${BIN_OUT}"
goreleaser build --skip=validate --clean --single-target --output "${BIN_OUT}"

echo "Binary compiled at ${BIN_OUT}"
2 changes: 1 addition & 1 deletion scripts/release/local-snapshot-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ export GO_BUILD_LDFLAGS="-s -w \
-X ${BUILDINFO_VARS_PKG}.appname=${APP} \
-X ${BUILDINFO_VARS_PKG}.goversion=${GOVERSION}"

goreleaser --snapshot --skip-publish --clean
goreleaser --snapshot --skip=publish --clean

0 comments on commit a905a72

Please sign in to comment.