Skip to content

Commit

Permalink
fix upload zips to release
Browse files Browse the repository at this point in the history
  • Loading branch information
juanmaguitar committed Jan 5, 2025
1 parent 7de5afb commit daf8eda
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release-zips.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
RELEASE_TAG="v$(date +'%Y%m%d%H%M%S')" # Make sure we use the same tag as created
for file in zips/*.zip; do
gh release upload ${{ steps.create_release.outputs.tag_name }} "$file"
gh release upload "$RELEASE_TAG" "$file"
done

0 comments on commit daf8eda

Please sign in to comment.