Revert some changes #42
Workflow file for this run
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
name: Build | |
on: push | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Set Xcode Version | |
run: | | |
sudo xcode-select -switch /Applications/Xcode_15.2.app | |
- name: Display Xcode Version | |
run: /usr/bin/xcodebuild -version | |
- name: Install Apple Certificate and Provisioning Profile | |
run: | | |
chmod +x install_dist_certs.sh && ./install_dist_certs.sh | |
chmod +x install_dist_profile.sh && ./install_dist_profile.sh | |
- name: Cache CocoaPods | |
uses: actions/cache@v2 | |
with: | |
path: | | |
Pods | |
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-pods- | |
- name: Install CocoaPods | |
run: | | |
if [ -f "Podfile.lock" ] && [ -f "${{ runner.workspace }}/Podfile.lock" ] && cmp -s Podfile.lock "${{ runner.workspace }}/Podfile.lock"; then | |
echo "Podfile.lock unchanged. Skipping pod installs." | |
else | |
gem install cocoapods | |
pod install --repo-update | |
fi | |
- name: Run SwiftLint | |
run: | | |
Pods/SwiftLint/swiftlint Splito | |
- name: Archive Project | |
run: | | |
ARCHIVE_PATH="$HOME/Library/Developer/Xcode/Archives/Splito/${CI_COMMIT_SHA}/${CI_JOB_ID}.xcarchive" | |
xcodebuild -workspace Splito.xcworkspace -scheme "Splito" -archivePath $ARCHIVE_PATH -sdk iphoneos -destination generic/platform=iOS clean archive | |
# xcodebuild -workspace Splito.xcworkspace -scheme "Splito" clean archive -sdk iphonesimulator -destination 'platform=iOS Simulator,OS=17.2,name=iPhone 14' ONLY_ACTIVE_ARCH=NO -archivePath $ARCHIVE_PATH | xcpretty --color | |
# xcodebuild -workspace Splito.xcworkspace -scheme "Splito" clean archive -sdk iphonesimulator -archivePath $ARCHIVE_PATH | xcpretty --color | |
rm -rf $ARCHIVE_PATH |