Skip to content

Commit

Permalink
ci: update 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 5a4541b commit 56c15c9
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 @@ -50,19 +50,19 @@ jobs:
if: ${{ steps.release.outputs.release_created }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload ${{ steps.release.outputs.tag_name }} ./dutctl-linux-amd64
run: gh release upload ${{ steps.release.outputs.tag_name }} ./dutctl-${{ steps.release.outputs.tag_name }}-linux-amd64

- name: Upload dutagent-linux-amd64
if: ${{ steps.release.outputs.release_created }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload ${{ steps.release.outputs.tag_name }} ./dutagent-linux-amd64
run: gh release upload ${{ steps.release.outputs.tag_name }} ./dutagent-${{ steps.release.outputs.tag_name }}-linux-amd64

- name: Upload dutagent-linux-arm64
if: ${{ steps.release.outputs.release_created }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload ${{ steps.release.outputs.tag_name }} ./dutagent-linux-arm64
run: gh release upload ${{ steps.release.outputs.tag_name }} ./dutagent-${{ steps.release.outputs.tag_name }}-linux-arm64



Expand Down

0 comments on commit 56c15c9

Please sign in to comment.