We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 679e938 commit 41418f8Copy full SHA for 41418f8
.github/workflows/windows.yml
@@ -19,8 +19,8 @@ jobs:
19
steps:
20
- uses: actions/checkout@v4
21
22
- # - name: Build
23
- # run: cargo build --release --verbose
+ - name: Build
+ run: cargo build --release --verbose
24
25
- name: Build Python
26
run: |
@@ -37,11 +37,13 @@ jobs:
37
mkdir -p ./artifacts
38
7z a ccrs-x86_64-pc-windows-msvc.zip ./target/release/ccrs.exe
39
sha256sum ccrs-x86_64-pc-windows-msvc.zip > ccrs-x86_64-pc-windows-msvc.zip.sha256
40
+ mv ./target/wheels/*.whl .
41
42
- name: Archive artifact
43
uses: actions/upload-artifact@v4
44
with:
45
name: artifacts-ccrs-x86_64-pc-windows-msvc
46
path: |
47
*.zip
- *.sha256
48
+ *.sha256
49
+ *.whl
0 commit comments