Skip to content

Commit 47066b4

Browse files
authored
fix(deploy_issues): adding semantic install
* fix(deploy_issues): fixing deploy issues Precommit-Verified: 8d3f8798617e507d7880d01606781f2a095fd58abd27839efdec9379f6f03b74
1 parent 39cc248 commit 47066b4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/python-package.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,14 @@ jobs:
4545
deploy:
4646
needs: ["build"]
4747
runs-on: ubuntu-latest
48+
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
4849

4950
steps:
51+
- uses: actions/checkout@v2
52+
- name: install semantic-release
53+
run: |
54+
pip install python-semantic-release
5055
- name: deploy pip
51-
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
5256
run: |
5357
git config --global user.name "semantic-release (via github actions)"
5458
git config --global user.email "semantic-release@github-actions"

0 commit comments

Comments
 (0)