From 5546f9f615c1339e0bd027ae30972d2778ce689f Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Sun, 5 Apr 2026 14:41:18 -0500 Subject: [PATCH] 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 --- .gitea/workflows/auto-tag.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/auto-tag.yml b/.gitea/workflows/auto-tag.yml index c3e79363..b3ff1e20 100644 --- a/.gitea/workflows/auto-tag.yml +++ b/.gitea/workflows/auto-tag.yml @@ -451,7 +451,7 @@ jobs: OPENSSL_NO_VENDOR: "0" OPENSSL_STATIC: "1" run: | - source "$HOME/.cargo/env" + . "$HOME/.cargo/env" npm ci --legacy-peer-deps rustup target add aarch64-unknown-linux-gnu CI=true npx tauri build --target aarch64-unknown-linux-gnu