Skip to content

Commit

Permalink
Fix issue with assets weird prefix on release
Browse files Browse the repository at this point in the history
  • Loading branch information
donhardman committed Jun 5, 2024
1 parent 883a158 commit 8729cf6
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 @@ -581,7 +581,7 @@ jobs:
- id: vars
run: |
echo "upload_url=$(cat upload_url.txt)" >> $GITHUB_OUTPUT
echo "asset_name=$(ls ./artifacts/*.${{ matrix.pkg }} | head -n 1)" >> $GITHUB_OUTPUT
echo "asset_name=$(ls ./artifacts/*.${{ matrix.pkg }} | head -n 1 | cut -d/ -f3)" >> $GITHUB_OUTPUT
- name: Upload Release Asset
id: upload-release-asset
Expand Down Expand Up @@ -636,7 +636,7 @@ jobs:
- id: vars
run: |
echo "upload_url=$(cat upload_url.txt)" >> $GITHUB_OUTPUT
echo "asset_name=$(ls ./artifacts/*.${{ matrix.pkg }} | head -n 1)" >> $GITHUB_OUTPUT
echo "asset_name=$(ls ./artifacts/*.${{ matrix.pkg }} | head -n 1 | cut -d/ -f3)" >> $GITHUB_OUTPUT
- name: Upload Release Asset
id: upload-release-asset
Expand Down

0 comments on commit 8729cf6

Please sign in to comment.