From 44cebf834ca6310fd9d3add90059ce97f31d0eb9 Mon Sep 17 00:00:00 2001 From: millianlmx Date: Fri, 26 Jun 2026 22:34:29 +0000 Subject: [PATCH] fix: add /opt/homebrew/bin to PATH for all steps --- .gitea/workflows/pr-iphone-deploy.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pr-iphone-deploy.yml b/.gitea/workflows/pr-iphone-deploy.yml index e084843..943bcc2 100644 --- a/.gitea/workflows/pr-iphone-deploy.yml +++ b/.gitea/workflows/pr-iphone-deploy.yml @@ -33,10 +33,13 @@ jobs: sudo xcode-select -s /Applications/Xcode.app xcodebuild -version + - name: Setup PATH + run: echo "/opt/homebrew/bin" >> $GITHUB_PATH + - name: Install tools (xcodegen, node, firebase) run: | - arch -arm64 /opt/homebrew/bin/brew install xcodegen node || true - /opt/homebrew/bin/npm install -g firebase-tools + brew install xcodegen node || true + npm install -g firebase-tools - name: Generate Xcode project run: |