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 39cc248 commit 47066b4Copy full SHA for 47066b4
.github/workflows/python-package.yml
@@ -45,10 +45,14 @@ jobs:
45
deploy:
46
needs: ["build"]
47
runs-on: ubuntu-latest
48
+ if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
49
50
steps:
51
+ - uses: actions/checkout@v2
52
+ - name: install semantic-release
53
+ run: |
54
+ pip install python-semantic-release
55
- name: deploy pip
- if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
56
run: |
57
git config --global user.name "semantic-release (via github actions)"
58
git config --global user.email "semantic-release@github-actions"
0 commit comments