Skip to content

Commit

Permalink
Update binaries name suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
natenho committed May 1, 2023
1 parent 0cb00ef commit 15e0e2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
run: go mod download

- name: Build for Windows
run: GOOS=windows go build -o aws-sqs-filter-redrive.exe .
run: GOOS=windows GOARCH=amd64 go build -o aws-sqs-filter-redrive_windows_amd64.exe .

- name: Build for Linux
run: GOOS=linux go build -o aws-sqs-filter-redrive .
run: GOOS=linux GOARCH=amd64 go build -o aws-sqs-filter-redrive_linux_amd64 .

- name: Tag Release
id: tag_release
Expand All @@ -41,4 +41,4 @@ jobs:
tag: ${{ steps.tag_release.outputs.new_tag }}
name: ${{ steps.tag_release.outputs.new_tag }}
body: ${{ steps.tag_release.outputs.changelog }}
artifacts: aws-sqs-filter-redrive*
artifacts: aws-sqs-filter-redrive*

0 comments on commit 15e0e2c

Please sign in to comment.