Skip to content

Commit

Permalink
feat: Modified build command
Browse files Browse the repository at this point in the history
  • Loading branch information
roerohan committed Nov 19, 2020
1 parent 5b93bec commit 444375e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- name: Build from source
run: |
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o ./bin/wait-for-it
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags "-s -w" -o ./bin/wait-for-it
- name: Increment version
id: increment_version
Expand All @@ -30,7 +30,7 @@ jobs:
wget https://gist.githubusercontent.com/roerohan/17e08ee9ed42d97bb841033b038117bd/raw/dfe42b58f0f88e384b40e89e789619574a24de4e/gitautotag.sh
chmod +x ./gitautotag.sh
./gitautotag.sh --minor
./gitautotag.sh --bug
echo "VERSION=$(git tag | tail -n 1)" >> $GITHUB_ENV
Expand Down

0 comments on commit 444375e

Please sign in to comment.