Skip to content

Commit 6ba7dbc

Browse files
committed
ci: fix MATURIN_PYPI_TOKEN
1 parent e629efe commit 6ba7dbc

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/create-py-mac-universal2-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: maturin publish
3333
uses: messense/maturin-action@v1
3434
env:
35-
MATURIN_PASSWORD: ${{ secrets.PYPI_PASS }}
35+
MATURIN_PYPI_TOKEN: ${{ secrets.MATURIN_PYPI_TOKEN }}
3636
with:
3737
maturin-version: 1.8.7
3838
command: publish

.github/workflows/create-py-release-manylinux.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: publish
2222
uses: PyO3/maturin-action@v1
2323
env:
24-
MATURIN_PASSWORD: ${{ secrets.PYPI_PASS }}
24+
MATURIN_PYPI_TOKEN: ${{ secrets.MATURIN_PYPI_TOKEN }}
2525
with:
2626
rust-toolchain: stable
2727
target: ${{ matrix.target }}
@@ -42,7 +42,7 @@ jobs:
4242
- name: publish cross
4343
uses: PyO3/maturin-action@v1
4444
env:
45-
MATURIN_PASSWORD: ${{ secrets.PYPI_PASS }}
45+
MATURIN_PYPI_TOKEN: ${{ secrets.MATURIN_PYPI_TOKEN }}
4646
with:
4747
rust-toolchain: stable
4848
manylinux: auto

.github/workflows/create-py-release-windows-macos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Publish wheel
3333
shell: bash
3434
env:
35-
MATURIN_PASSWORD: ${{ secrets.PYPI_PASS }}
35+
MATURIN_PYPI_TOKEN: ${{ secrets.MATURIN_PYPI_TOKEN }}
3636
run: |
3737
export RUSTFLAGS='-C target-feature=+fxsr,+sse,+sse2,+sse3'
3838
maturin publish \

0 commit comments

Comments
 (0)