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 358418b commit 90eef8dCopy full SHA for 90eef8d
.github/workflows/ci.yml
@@ -3,7 +3,7 @@ name: CI
3
on:
4
push:
5
branches: [master]
6
- tags: ['v*']
+ tags: ['*']
7
pull_request:
8
9
@@ -37,6 +37,7 @@ jobs:
37
env:
38
PYTHON_VERSION: ${{ matrix.python-version }}
39
run: tox
40
+
41
- name: Install release dependencies
42
if: github.ref == 'refs/heads/master' && matrix.python-version == '3.8'
43
run: |
@@ -57,7 +58,8 @@ jobs:
57
58
# Separate job for PyPI publishing
59
publish:
60
needs: test
- if: startsWith(github.ref, 'refs/tags/')
61
+ # Changed the condition to check for any tag
62
+ if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
63
runs-on: ubuntu-latest
64
environment: ci
65
steps:
0 commit comments