Skip to content

Commit

Permalink
chore: Add GitHub release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
HashCookie committed May 27, 2024
1 parent f9207a3 commit 447134b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,17 @@ jobs:
- name: List files in dist
run: ls -la dist

- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false

- name: Upload Release Assets
uses: ncipollo/release-action@v1
with:
Expand Down

0 comments on commit 447134b

Please sign in to comment.