Skip to content

Commit 24128e2

Browse files
committed
Use regular gh CLI for release notes.
1 parent 3bbdeb1 commit 24128e2

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
@@ -101,8 +101,6 @@ jobs:
101101
uses: pypa/gh-action-pypi-publish@release/v1
102102
- name: Create a Release
103103
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
104-
uses: softprops/action-gh-release@v2
105-
with:
106-
files: |
107-
dist/*
108-
generate_release_notes: true
104+
run: gh release create ${{ github.ref_name }} dist/* --generate-notes
105+
env:
106+
GH_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)