Skip to content

Commit dfceaa1

Browse files
committed
Change to manual release
1 parent 0615669 commit dfceaa1

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,12 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- uses: actions/checkout@v4
26-
- uses: taiki-e/create-gh-release-action@v1
27-
with:
28-
token: ${{ secrets.GITHUB_TOKEN }}
26+
- run: |
27+
ref=${{ github.ref }}
28+
ref=${ref##*/}
29+
gh release create --prerelease --title $ref --notes-from-tag $ref
30+
env:
31+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2932
3033
upload-assets:
3134
needs: create-release

0 commit comments

Comments
 (0)