We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b9a97e commit 9dd99e6Copy full SHA for 9dd99e6
1 file changed
.github/workflows/pythonapp.yml
@@ -28,10 +28,8 @@ jobs:
28
run: |
29
pip install -r requirements.txt
30
pytest
31
- - name: Install dependencies
32
- run: |
33
- python -m pip install --upgrade pip
34
- pip install build
+
35
publish:
36
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
37
needs: test
@@ -44,6 +42,10 @@ jobs:
44
42
uses: actions/setup-python@v2
45
43
with:
46
python-version: '3.x'
+ - name: Install dependencies
+ run: |
47
+ python -m pip install --upgrade pip
48
+ pip install build
49
- name: Build package for publishing
50
run: python -m build
51
- name: Publish package
0 commit comments