From eb4cf59192916ad21d285c556d19fade62309ebf Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Sun, 5 Apr 2026 14:03:04 -0500 Subject: [PATCH] fix(ci): remove GITHUB_PATH append that was breaking arm64 install step MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit $GITHUB_PATH is unset in this Gitea Actions environment, causing the echo redirect to fail with a non-zero exit, which killed the Install dependencies step before the Build step could run. The append was unnecessary — the Build step already sources $HOME/.cargo/env as its first line, which puts Cargo's bin dir in PATH. Co-Authored-By: fix/yaml-heredoc-indent --- .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 195c1852..c3e79363 100644 --- a/.gitea/workflows/auto-tag.yml +++ b/.gitea/workflows/auto-tag.yml @@ -436,9 +436,9 @@ jobs: apt-get install -y nodejs # Step 5: Rust (not pre-installed in ubuntu:22.04) + # source "$HOME/.cargo/env" in the Build step handles PATH — no GITHUB_PATH needed curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \ --default-toolchain 1.88.0 --profile minimal --no-modify-path - echo "$HOME/.cargo/bin" >> "$GITHUB_PATH" - name: Build env: CC_aarch64_unknown_linux_gnu: aarch64-linux-gnu-gcc