Skip to content

Commit

Permalink
ci: fix release workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Jens Drenhaus <[email protected]>
  • Loading branch information
jensdrenhaus committed Sep 26, 2024
1 parent 96f8ad7 commit 09a219e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ jobs:

- name: Build dutctl for amd64
if: ${{ steps.release.outputs.release_created }}
run: GOOS=linux GOARCH=amd64 go build -o dutctl-linux-amd64 ./cmds/dutctl
run: GOOS=linux GOARCH=amd64 go build -o dutctl-${{ steps.release.outputs.tag_name }}-linux-amd64 ./cmds/dutctl

- name: Build dutagent for amd64
if: ${{ steps.release.outputs.release_created }}
run: GOOS=linux GOARCH=amd64 go build -o dutagent-linux-amd64 ./cmds/dutctl
run: GOOS=linux GOARCH=amd64 go build -o dutagent-${{ steps.release.outputs.tag_name }}-linux-amd64 ./cmds/dutctl

- name: Build dutagent for arm64
if: ${{ steps.release.outputs.release_created }}
run: GOOS=linux GOARCH=arm64 go build -o dutagent-linux-arm64 ./cmds/dutctl
run: GOOS=linux GOARCH=arm64 go build -o dutagent-${{ steps.release.outputs.tag_name }}-linux-arm64 ./cmds/dutctl


- name: Upload dutctl-linux-amd64
Expand Down

0 comments on commit 09a219e

Please sign in to comment.