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.
package.yml
1 parent 63719b1 commit 84dd668Copy full SHA for 84dd668
1 file changed
.github/workflows/package.yml
@@ -129,3 +129,17 @@ jobs:
129
user: __token__
130
password: ${{ secrets.PYPI_API_TOKEN }}
131
skip_existing: false
132
+
133
+ release:
134
+ environment: GitHub Releases
135
+ runs-on: ubuntu-latest
136
+ if: "startsWith(github.ref, 'refs/tags/v')"
137
+ name: Release
138
+ needs: upload
139
+ steps:
140
+ - name: Checkout code
141
+ uses: actions/checkout@v1
142
+ - name: Release a Changelog
143
+ uses: rasmus-saks/release-a-changelog-action@v1.0.1
144
+ with:
145
+ github-token: '${{ secrets.GITHUB_TOKEN }}'
0 commit comments