Skip to content

Commit

Permalink
Fix pip-release by bumping actions version
Browse files Browse the repository at this point in the history
  • Loading branch information
haixuanTao committed Jul 4, 2024
1 parent c71bba9 commit 2f401ff
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/pip-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,20 +61,24 @@ jobs:
file_glob: true

windows:
runs-on: windows-latest
runs-on: ${{ matrix.platform.runner }}
strategy:
matrix:
target: [x64]
platform:
- runner: windows-latest
target: x64
- runner: windows-latest
target: x86
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.7"
architecture: ${{ matrix.target }}
architecture: ${{ matrix.platform.target }}
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
target: ${{ matrix.platform.target }}
args: --release --out dist
sccache: "true"
working-directory: apis/python/node
Expand Down

0 comments on commit 2f401ff

Please sign in to comment.