Skip to content

Commit

Permalink
try softprops again
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanVukovic99 committed Jul 12, 2024
1 parent db9bee8 commit 6914c17
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
outputs:
tag: ${{ steps.tag.outputs.tag }}
languages: ${{ steps.load-languages.outputs.languages }}
calver: ${{ steps.tag.outputs.calver }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand Down Expand Up @@ -124,11 +125,11 @@ jobs:
cat zip_files.txt >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
- name: Upload Release Asset
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
for f in ${{ steps.generate_file_list.outputs.zip_files }}; do
echo "Uploading $f"
gh release upload ${{ needs.prepare.outputs.tag }} $f
done
- name: Release
uses: softprops/action-gh-release@v2
with:
name: ${{ needs.prepare.outputs.tag }}
tag_name: ${{ needs.prepare.outputs.tag }}
prerelease: true
generate_release_notes: true
files: ${{ steps.generate_file_list.outputs.zip_files }}

0 comments on commit 6914c17

Please sign in to comment.