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.
1 parent 9bf4b9a commit cce468aCopy full SHA for cce468a
.github/workflows/deploy.yml
@@ -30,13 +30,9 @@ jobs:
30
poetry install
31
- name: View poetry version
32
run: poetry --version
33
- - name: Semantic Release
34
- env:
35
- GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
36
- PYPI_TOKEN: ${{secrets.PYPI_TOKEN}}
37
- run: |
38
- python3 -m pip install python-semantic-release
39
- git config user.name github-actions
40
- git config user.email [email protected]
41
- semantic-release publish --${{ github.event.inputs.releaseType }}
+ - name: Python Semantic Release
+ uses: relekang/python-semantic-release@master
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ pypi_token: ${{ secrets.PYPI_TOKEN }}
42
0 commit comments