We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0857115 + 9bce91e commit b2eb093Copy full SHA for b2eb093
.github/workflows/deploy.yml
@@ -109,8 +109,8 @@ jobs:
109
tox -e generate-gh-release-notes -- "$VERSION" scripts/latest-release-notes.md
110
111
- name: Publish GitHub Release
112
- uses: softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631
113
- with:
114
- body_path: scripts/latest-release-notes.md
115
- files: dist/*
116
- tag_name: ${{ github.event.inputs.version }}
+ env:
+ VERSION: ${{ github.event.inputs.version }}
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: |
+ gh release create --notes-file scripts/latest-release-notes.md --verify-tag "$VERSION" dist/*
0 commit comments