fix(ci): use POSIX dot instead of source in arm64 build step
The act runner executes run: blocks with sh (dash), not bash. 'source' is a bash built-in; POSIX sh uses '.' instead. Co-Authored-By: fix/arm64-source-sh <noreply@local>
This commit is contained in:
parent
3f76818a47
commit
5546f9f615
@ -451,7 +451,7 @@ jobs:
|
|||||||
OPENSSL_NO_VENDOR: "0"
|
OPENSSL_NO_VENDOR: "0"
|
||||||
OPENSSL_STATIC: "1"
|
OPENSSL_STATIC: "1"
|
||||||
run: |
|
run: |
|
||||||
source "$HOME/.cargo/env"
|
. "$HOME/.cargo/env"
|
||||||
npm ci --legacy-peer-deps
|
npm ci --legacy-peer-deps
|
||||||
rustup target add aarch64-unknown-linux-gnu
|
rustup target add aarch64-unknown-linux-gnu
|
||||||
CI=true npx tauri build --target aarch64-unknown-linux-gnu
|
CI=true npx tauri build --target aarch64-unknown-linux-gnu
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user