Browse Source

Minor fix in pip-release

tags/v0.2.3^2
haixuanTao 3 years ago
parent
commit
f242fa0f46
1 changed files with 10 additions and 10 deletions
  1. +10
    -10
      .github/workflows/pip-release.yml

+ 10
- 10
.github/workflows/pip-release.yml View File

@@ -1,8 +1,11 @@
# This file is autogenerated by maturin v0.14.17
# To update, run
# This file has been originally generated by maturin v0.14.17
# To update, you can check
#
# maturin generate-ci github --zig
#
# But note that some manual modification has been done.
# Check the diffs to make sure that you haven't broken anything.

name: pip-release

on:
@@ -11,7 +14,7 @@ on:
- "published"

permissions:
contents: read
contents: write

jobs:
linux:
@@ -39,7 +42,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
path: apis/python/node/dist

windows:
runs-on: windows-latest
@@ -63,7 +66,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
path: apis/python/node/dist

macos:
runs-on: macos-latest
@@ -75,9 +78,6 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: "3.7"
- name: Install dependencies
run: |
pip install patchelf --upgrade
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
@@ -89,7 +89,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
path: apis/python/node/dist

sdist:
runs-on: ubuntu-latest
@@ -105,7 +105,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
path: apis/python/node/dist

release:
name: Release


Loading…
Cancel
Save