1 parent f24669e commit fb23a52Copy full SHA for fb23a52
1 file changed
.github/workflows/release.yml
@@ -10,8 +10,8 @@ jobs:
10
runs-on: ${{ matrix.os }}
11
strategy:
12
matrix:
13
- # os: [ubuntu-latest, macos-latest, windows-latest]
14
- os: [windows-latest]
+ os: [ubuntu-latest, macos-latest, windows-latest]
+ # os: [windows-latest]
15
16
steps:
17
- uses: actions/checkout@v6
@@ -25,7 +25,14 @@ jobs:
25
command: build
26
args: --release --out dist
27
28
- - uses: actions/upload-artifact@v7
+ # - uses: actions/upload-artifact@v7
29
+ # with:
30
+ # name: wheels
31
+ # path: dist
32
+
33
+ - name: Upload wheels to GitHub release
34
+ uses: softprops/action-gh-release@v2
35
with:
- name: wheels
- path: dist
36
+ files: dist/*
37
+ env:
38
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments