|
10 | 10 |
|
11 | 11 | jobs: |
12 | 12 | tag-release: |
13 | | - if: ${{ github.event.workflow_run.conclusion == 'success' }} || ${{ github.event.workflow_dispatch }} |
| 13 | + if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }} |
14 | 14 | name: tag-release - Python 3.12 (ubuntu-latest) |
15 | 15 | runs-on: ubuntu-latest |
16 | 16 | outputs: |
|
34 | 34 | # Create GitHub release |
35 | 35 | - name: Create release |
36 | 36 | id: create-release |
37 | | - uses: softprops/action-gh-release@v1 |
| 37 | + uses: softprops/action-gh-release@v2 |
38 | 38 | with: |
39 | 39 | name: ${{ env.RELEASE_NAME }} |
40 | 40 | tag_name: ${{ env.TAG_NAME }} |
@@ -73,13 +73,13 @@ jobs: |
73 | 73 | python-version: ${{ matrix.python-version }} |
74 | 74 |
|
75 | 75 | - name: Build wheels - x86_64 |
76 | | - uses: messense/maturin-action@v1 |
| 76 | + uses: PyO3/maturin-action@v1 |
77 | 77 | with: |
78 | 78 | target: x86_64 |
79 | 79 | args: --release --out dist --manifest-path python/Cargo.toml --interpreter python${{ matrix.python-version }} |
80 | 80 |
|
81 | 81 | - name: Build wheels - universal2 |
82 | | - uses: messense/maturin-action@v1 |
| 82 | + uses: PyO3/maturin-action@v1 |
83 | 83 | with: |
84 | 84 | args: --release --target universal2-apple-darwin --out dist --manifest-path python/Cargo.toml --interpreter python${{ matrix.python-version }} |
85 | 85 |
|
@@ -121,7 +121,7 @@ jobs: |
121 | 121 | architecture: x64 |
122 | 122 |
|
123 | 123 | - name: Build wheels |
124 | | - uses: messense/maturin-action@v1 |
| 124 | + uses: PyO3/maturin-action@v1 |
125 | 125 | with: |
126 | 126 | target: x64 |
127 | 127 | args: --release --out dist --manifest-path python/Cargo.toml --interpreter python${{ matrix.python-version }} |
@@ -164,7 +164,7 @@ jobs: |
164 | 164 | python-version: ${{ matrix.python-version }} |
165 | 165 |
|
166 | 166 | - name: Build wheels |
167 | | - uses: messense/maturin-action@v1 |
| 167 | + uses: PyO3/maturin-action@v1 |
168 | 168 | with: |
169 | 169 | target: ${{ matrix.target }} |
170 | 170 | manylinux: auto |
@@ -208,7 +208,7 @@ jobs: |
208 | 208 | python-version: ${{ matrix.python-version }} |
209 | 209 |
|
210 | 210 | - name: Build wheels |
211 | | - uses: messense/maturin-action@v1 |
| 211 | + uses: PyO3/maturin-action@v1 |
212 | 212 | with: |
213 | 213 | target: ${{ matrix.target }} |
214 | 214 | manylinux: musllinux_1_2 |
@@ -304,8 +304,6 @@ jobs: |
304 | 304 | target: x86_64-unknown-linux-musl |
305 | 305 | - os: macos-latest |
306 | 306 | target: x86_64-apple-darwin |
307 | | - - os: macos-latest |
308 | | - target: x86_64-apple-darwin |
309 | 307 | - os: macos-latest |
310 | 308 | target: aarch64-apple-darwin |
311 | 309 | - os: windows-latest |
|
0 commit comments