Skip to content

Commit

Permalink
Fixes the release build (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
TAGraves authored May 20, 2024
1 parent b864d20 commit 5ced2af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .mint/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ tasks:
extension=".exe"
fi
CGO_ENABLED=0 \
LDFLAGS="-w -s -X github.com/rwx-research/mint-cli/cmd/mint/config.Version=${{ tasks.extract-version-details.values.full-version }}" \
go run ./tools/mage -compile "mint$extension" -goos ${{ parallel.os }} -goarch ${{ parallel.arch }}
GOOS=${{ parallel.os }} \
GOARCH=${{ parallel.arch }} \
go build -ldflags "-w -s -X github.com/rwx-research/mint-cli/cmd/mint/config.Version=${{ tasks.extract-version-details.values.full-version }}" -a ./cmd/mint
if [[ ${{ parallel.os }} == "darwin" ]]; then
echo "$RWX_APPLE_DEVELOPER_ID_APPLICATION_CERT" > rwx-developer-id-application-cert.pem
Expand Down

0 comments on commit 5ced2af

Please sign in to comment.