Skip to content

Commit

Permalink
Merge pull request #5 from tuna2134/main
Browse files Browse the repository at this point in the history
修正
  • Loading branch information
tuna2134 authored Nov 23, 2023
2 parents eb1baf8 + e09ed7a commit f03081b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --locked --manifest-path crates/voicevox_core_python_api/Cargo.toml
args: --release --out dist --locked --manifest-path crates/voicevox_core_python_api/Cargo.toml --find-interpreter
sccache: 'true'
manylinux: auto
- name: Upload wheels
Expand All @@ -83,7 +83,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --locked --manifest-path crates/voicevox_core_python_api/Cargo.toml
args: --release --out dist --locked --manifest-path crates/voicevox_core_python_api/Cargo.toml --find-interpreter
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --locked --manifest-path crates/voicevox_core_python_api/Cargo.toml
args: --release --out dist --locked --manifest-path crates/voicevox_core_python_api/Cargo.toml --find-interpreter
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -144,14 +144,14 @@ jobs:
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
needs: [linux, windows, macos, sdist]
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v3
with:
name: wheels
path: dist/
- name: Publish to PyPI
uses: PyO3/maturin-action@v1
env:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
command: upload
args: --non-interactive --skip-existing *
repository-url: https://test.pypi.org/legacy/

0 comments on commit f03081b

Please sign in to comment.