Skip to content

Commit 66c670c

Browse files
committed
attempt creating a github release when publishing
1 parent cf8914f commit 66c670c

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/publish.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,13 @@ jobs:
5959
with:
6060
# No token needed - uses OIDC trusted publishing
6161
print-hash: true
62+
63+
- name: Create GitHub Release
64+
env:
65+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
66+
run: |
67+
gh release create "v${{ env.NEW_VERSION }}" \
68+
--repo="${{ github.repository }}" \
69+
--title="v${{ env.NEW_VERSION }}" \
70+
--generate-notes \
71+
./dist/*

0 commit comments

Comments
 (0)