Skip to content

Commit f2933a4

Browse files
committed
Use regular gh CLI for release notes.
1 parent 898431c commit f2933a4

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,6 @@ jobs:
115115
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b
116116
- name: Create a GitHub Release
117117
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
118-
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b
119-
with:
120-
files: |
121-
dist/*
122-
generate_release_notes: true
118+
run: gh release create --generate-notes "$GITHUB_REF_NAME" dist/*
119+
env:
120+
GH_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)