We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25e5875 commit ac7e9d4Copy full SHA for ac7e9d4
.github/workflows/CI.yml
@@ -85,6 +85,7 @@ jobs:
85
86
release:
87
name: Release
88
+ environment: release
89
runs-on: ubuntu-latest
90
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }}
91
needs: [linux, windows, sdist]
@@ -104,8 +105,8 @@ jobs:
104
105
- name: Publish to PyPI
106
if: ${{ startsWith(github.ref, 'refs/tags/') }}
107
uses: PyO3/maturin-action@v1
- env:
108
- MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
+ # env:
109
+ # MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
110
with:
111
command: upload
112
args: --non-interactive --skip-existing wheels-*/*
0 commit comments