Skip to content

Commit fb23a52

Browse files
committed
update
1 parent f24669e commit fb23a52

1 file changed

Lines changed: 12 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
# os: [ubuntu-latest, macos-latest, windows-latest]
14-
os: [windows-latest]
13+
os: [ubuntu-latest, macos-latest, windows-latest]
14+
# os: [windows-latest]
1515

1616
steps:
1717
- uses: actions/checkout@v6
@@ -25,7 +25,14 @@ jobs:
2525
command: build
2626
args: --release --out dist
2727

28-
- uses: actions/upload-artifact@v7
28+
# - 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
2935
with:
30-
name: wheels
31-
path: dist
36+
files: dist/*
37+
env:
38+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)