diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 78c58355..6917e74b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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