Skip to content

Commit

Permalink
Adding auto create release after action
Browse files Browse the repository at this point in the history
  • Loading branch information
y3fers0n committed Sep 20, 2024
1 parent d4ef9ec commit 759cf4a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,18 @@ jobs:
bun run publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.event.inputs.version }}
release_name: Release ${{ github.event.inputs.version }}
body: |
New Release 🚀
draft: false
prerelease: true
permissions:
actions: write
contents: write
Expand Down

0 comments on commit 759cf4a

Please sign in to comment.