Skip to content

Commit

Permalink
update release script
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Chi <[email protected]>
  • Loading branch information
skyzh committed Sep 5, 2021
1 parent 03b5446 commit 185a758
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,13 @@ jobs:
- name: create zip
run: |
(cd build && zip -r - .) > dists.zip
- name: create release
- uses: actions/create-release@latest
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: untagged-${{ github.sha }}
release_name: ${{ github.sha }} - ${{ github.event.head_commit.message }}
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: ${{ github.event.head_commit.message }}
draft: false
prerelease: true
Expand Down

0 comments on commit 185a758

Please sign in to comment.