Skip to content

Commit 9576dff

Browse files
committed
fix workflow for 64 bit build
1 parent 110003e commit 9576dff

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/automaticRelease.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ jobs:
4040
python-version: 3.11
4141
architecture: 'x64'
4242
- name: Build Rust Library
43-
run: cargo build --target x86_64-pc-windows-msvc --release
43+
run: |
44+
rustup target add x86_64-pc-windows-msvc
45+
cargo build --target x86_64-pc-windows-msvc --release
4446
- name: Setup Example dir
4547
run: |
4648
cp target/x86_64-pc-windows-msvc/release/libmathcat_py.dll Example/libmathcat_py.pyd

0 commit comments

Comments
 (0)