Skip to content

Commit

Permalink
Fix deploy step (#1521)
Browse files Browse the repository at this point in the history
  • Loading branch information
yorinasub17 authored Feb 2, 2021
1 parent 7451648 commit af5d6eb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ jobs:
<<: *defaults
steps:
- checkout
- run: build-go-binaries --app-name terragrunt --dest-path bin --ld-flags "-X main.VERSION=$CIRCLE_TAG"
# Build amd64 and 386 separately, as darwin/386 is no longer supported in later versions of go
- run: build-go-binaries --app-name terragrunt --dest-path bin --ld-flags "-X main.VERSION=$CIRCLE_TAG" --arch 'amd64'
- run: build-go-binaries --app-name terragrunt --dest-path bin --ld-flags "-X main.VERSION=$CIRCLE_TAG" --os 'linux windows' --arch 386
- run: cd bin && sha256sum * > SHA256SUMS
- run: upload-github-release-assets bin/*
workflows:
Expand Down

0 comments on commit af5d6eb

Please sign in to comment.