We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85d40bb commit 30347c7Copy full SHA for 30347c7
.github/workflows/publish.yml
@@ -24,17 +24,15 @@ jobs:
24
run: python setup.py sdist bdist_wheel
25
- name: Create GitHub Release
26
id: create_release
27
- uses: actions/create-release@v1
28
- env:
29
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ uses: ncipollo/release-action@v1
30
with:
31
- tag_name: ${{ github.ref }}
32
- release_name: Release ${{ github.ref }}
+ tag: ${{ github.ref }}
+ name: Release ${{ github.ref }}
33
body: |
34
Change Log:
35
draft: true # Give me a moment to fill in the description
36
- prerelease: false
37
artifacts: "dist/*"
+ token: ${{ secrets.GITHUB_TOKEN }}
38
- name: Publish to PyPI
39
uses: pypa/gh-action-pypi-publish@master
40
0 commit comments