Skip to content

Commit 6221a3d

Browse files
committed
add
1 parent 0823089 commit 6221a3d

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ jobs:
3131
which wasm-ld && echo "wasm-ld found after PATH update"
3232
3333
- name: Deploy iOS Beta to TestFlight via Fastlane
34-
run: echo "$MATCH_DEPLOY_KEY" > ~/.ssh/id_rsa && chmod 600 ~/.ssh/id_rsa && fastlane beta
34+
run: |
35+
export PATH="/opt/homebrew/bin:/usr/local/bin:$PATH"
36+
echo "$MATCH_DEPLOY_KEY" > ~/.ssh/id_rsa && chmod 600 ~/.ssh/id_rsa && fastlane beta
3537
env:
3638
MATCH_DEPLOY_KEY: "${{ secrets.MATCH_DEPLOY_KEY }}"
3739
APP_STORE_CONNECT_TEAM_ID: "${{ secrets.APP_STORE_CONNECT_TEAM_ID }}"
@@ -53,7 +55,6 @@ jobs:
5355
JUDGE0_ENDPOINT: ""
5456
DISTRIBUTE_EXTERNAL: "true"
5557
XCODE_PATH: "/Applications/Xcode_26.2.app"
56-
PATH: "/opt/homebrew/bin:/usr/local/bin:${{ env.PATH }}"
5758

5859
- name: Upload Artifact
5960
uses: actions/upload-artifact@v4

.github/workflows/production.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
which wasm-ld && echo "wasm-ld found after PATH update"
3030
3131
- name: Deploy production build to App Store via Fastlane
32-
run: echo "$MATCH_DEPLOY_KEY" > ~/.ssh/id_rsa && chmod 600 ~/.ssh/id_rsa && fastlane beta
32+
run: |
33+
export PATH="/opt/homebrew/bin:/usr/local/bin:$PATH"
34+
echo "$MATCH_DEPLOY_KEY" > ~/.ssh/id_rsa && chmod 600 ~/.ssh/id_rsa && fastlane beta
3335
env:
3436
MATCH_DEPLOY_KEY: "${{ secrets.MATCH_DEPLOY_KEY }}"
3537
APP_STORE_CONNECT_TEAM_ID: "${{ secrets.APP_STORE_CONNECT_TEAM_ID }}"
@@ -51,4 +53,3 @@ jobs:
5153
JUDGE0_ENDPOINT: "${{ secrets.JUDGE0_ENDPOINT }}"
5254
DISTRIBUTE_EXTERNAL: "false"
5355
XCODE_PATH: "/Applications/Xcode_26.2.app"
54-
PATH: "/opt/homebrew/bin:/usr/local/bin:${{ env.PATH }}"

0 commit comments

Comments
 (0)