We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4afc2a commit d5e171cCopy full SHA for d5e171c
2 files changed
.github/workflows/main.yml
@@ -81,6 +81,7 @@ jobs:
81
isort . --check-only
82
83
publish:
84
+ if: startsWith(github.ref, 'refs/tags/')
85
runs-on: ubuntu-latest
86
needs: [test, lint-black, lint-isort]
87
environment: pypi
CHANGELOG.md
@@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20
- Restrict GitHub Actions push trigger to main branches and release tags (@marteinn)
21
- Pin isort to specific version in CI (@marteinn)
22
- Fix broken jQuery selector in PolyfillColorInputWidget caused by missing # prefix after XSS fix (@marteinn)
23
+- Only run publish job in CI on tag pushes (@marteinn)
24
25
### Removed
26
- Drop support for EOL python 3.9 (@marteinn)
0 commit comments