Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
BugDiver authored Jun 7, 2024
1 parent 188a667 commit 3262188
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,14 @@ jobs:
zip -r ts.zip ./ts;
openssl sha256 ts.zip | cut -d " " -f2 > ts.zip.sha256
version=$(jq -r ".version" metadata.json)
echo "Creating release v$version"
hub release create -m "v$version" "v$version"
echo "Created release v$version"
hub release show "v$version"
echo "Uploading artifacts... ⏳"
hub release edit -m "" -a ts.zip "v$version"
hub release edit -m "" -a ts.zip.sha256 "v$version"
echo "Done. ✅"
- name: setup git
run: |
git config --global user.name "$(git --no-pager log --format=format:'%an' -n 1)"
Expand Down

0 comments on commit 3262188

Please sign in to comment.