File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -443,28 +443,28 @@ jobs:
443
443
steps :
444
444
- uses : actions/checkout@v4
445
445
- run : rustup update --no-self-update stable && rustup default stable
446
- - run : cargo build --manifest-path crates/cli/Cargo.toml --release
446
+ - run : rustup target add x86_64-apple-darwin
447
+ - run : cargo build --manifest-path crates/cli/Cargo.toml --target x86_64-apple-darwin --release
447
448
env :
448
449
MACOSX_DEPLOYMENT_TARGET : 10.7
449
450
- uses : actions/upload-artifact@v4
450
451
with :
451
452
name : dist_macos_x86_64
452
- path : " target/release/wasm*"
453
+ path : " target/x86_64-apple-darwin/ release/wasm*"
453
454
454
455
dist_macos_aarch64 :
455
456
runs-on : macos-latest
456
457
steps :
457
458
- uses : actions/checkout@v4
458
459
- run : rustup update --no-self-update stable && rustup default stable
459
- - run : rustup target add aarch64-apple-darwin
460
460
- run : |
461
- cargo build --manifest-path crates/cli/Cargo.toml --target aarch64-apple-darwin -- release
461
+ cargo build --manifest-path crates/cli/Cargo.toml --release
462
462
env:
463
463
MACOSX_DEPLOYMENT_TARGET: 10.7
464
464
- uses : actions/upload-artifact@v4
465
465
with :
466
466
name : dist_macos_aarch64
467
- path : " target/aarch64-apple-darwin/ release/wasm*"
467
+ path : " target/release/wasm*"
468
468
469
469
dist_windows :
470
470
runs-on : windows-latest
You can’t perform that action at this time.
0 commit comments