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 5988de1 commit 8a956b8Copy full SHA for 8a956b8
.github/workflows/ci.yml
@@ -54,3 +54,17 @@ jobs:
54
pre-commit:
55
name: pre-commit
56
uses: ./.github/workflows/pre-commit.yml
57
+
58
+ # ====================================================
59
+ # Deployment
60
61
+ publish-test-pypi:
62
+ name: publish-to-test-pypi
63
+ if: needs.check-pre-release.outputs.is_valid == 'true'
64
+ needs: [zerv-versioning, check-pre-release]
65
+ uses: ./.github/workflows/publish.yml
66
+ with:
67
+ version: ${{ fromJson(needs.zerv-versioning.outputs.versions).pep440 }}
68
+ repository_url: https://test.pypi.org/legacy/
69
+ secrets:
70
+ PYPI_API_TOKEN: ${{ secrets.TEST_PYPI_API_TOKEN }}
0 commit comments