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 926fd5c commit 3fcee19Copy full SHA for 3fcee19
.github/workflows/release.yml
@@ -9,7 +9,7 @@ jobs:
9
release-job:
10
runs-on: ubuntu-latest
11
env:
12
- PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
+ PYPI_TOKEN: ${{ secrets.PYPI_TOKEN_PYMC }}
13
steps:
14
- uses: actions/checkout@v2
15
- name: Set up Python
@@ -39,7 +39,7 @@ jobs:
39
- name: Publish to PyPI
40
run: |
41
twine check dist/*
42
- twine upload --repository pypi --username __token__ --password ${PYPI_TOKEN} dist/*
+ twine upload --repository pypi --username __token__ --password ${PYPI_TOKEN_PYMC} dist/*
43
test-install-job:
44
needs: release-job
45
0 commit comments