Skip to content

Commit 487a2f8

Browse files
authored
fix(deploy_issues): switch to actions (#252)
1 parent 47066b4 commit 487a2f8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/python-package.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,20 @@ jobs:
4343
pytest tests/integration
4444
4545
deploy:
46+
strategy:
47+
matrix:
48+
python-version: [3.7]
49+
4650
needs: ["build"]
4751
runs-on: ubuntu-latest
4852
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
4953

5054
steps:
5155
- uses: actions/checkout@v2
56+
- name: Set up Python ${{ matrix.python-version }}
57+
uses: actions/setup-python@v2
58+
with:
59+
python-version: ${{ matrix.python-version }}
5260
- name: install semantic-release
5361
run: |
5462
pip install python-semantic-release

0 commit comments

Comments
 (0)