-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f675965
commit 2e059ff
Showing
1 changed file
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,23 +10,29 @@ jobs: | |
steps: | ||
- name: Checkout Project | ||
uses: actions/checkout@v4 | ||
|
||
- name: "Select Latest Xcode" | ||
uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: latest-stable | ||
|
||
- name: Set Homebrew PATH | ||
run: | | ||
echo "PATH=/opt/homebrew/bin:/usr/local/bin:$PATH" >> $GITHUB_ENV | ||
chmod +x /opt/homebrew/bin/carthage | ||
- name: Verify Carthage Installation | ||
run: which carthage | ||
- name: Add homebrew to PATH | ||
run: echo "/opt/homebrew/bin:${PATH}" >> $GITHUB_PATH | ||
- name: Debug PATH and Carthage | ||
run: | | ||
echo "Current PATH: $PATH" | ||
ls -l /opt/homebrew/bin/carthage | ||
which carthage | ||
env: | ||
PATH: "/opt/homebrew/bin:/usr/local/bin:$PATH" | ||
|
||
- name: "Carthage Cached Bootstrap" | ||
uses: DevCycleHQ/[email protected] | ||
env: | ||
PATH: "/opt/homebrew/bin:/usr/local/bin:$PATH" | ||
with: | ||
github-token: ${{ secrets.AUTOMATION_USER_TOKEN }} | ||
use-xcframeworks: true | ||
|
||
- name: Fastlane iOS Tests | ||
run: fastlane ios tests |