Skip to content

Commit

Permalink
Update ios.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
WindowsMEMZ authored Nov 18, 2023
1 parent fe67198 commit 6bbc8ad
Showing 1 changed file with 7 additions and 14 deletions.
21 changes: 7 additions & 14 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,18 @@ jobs:
run: |
xcodebuild -scheme 'DarockBili Watch App' -configuration Debug -archivePath DarockBili_Debug.xcarchive clean archive CODE_SIGN_IDENTITY=""
xcodebuild -scheme 'DarockBili Watch App' -configuration Release -archivePath DarockBili_Release.xcarchive clean archive CODE_SIGN_IDENTITY=""
- name: Export IPA
run: |
mkdir ./Export_Debug
mkdir ./Export_Release
xcodebuild -exportArchive -archivePath DarockBili_Debug.xcarchive -exportPath ./Export_Debug -exportOptionsPlist ExportOptions.plist
xcodebuild -exportArchive -archivePath DarockBili_Release.xcarchive -exportPath ./Export_Release -exportOptionsPlist ExportOptions.plist
- name: Upload Debug IPA
- name: Upload Debug Archive
uses: actions/upload-artifact@v3
with:
name: Debug.ipa
path: ./Export_Debug/DarockBili.ipa
name: Debug XCArchive
path: ./DarockBili_Debug.xcarchive

- name: Upload Release IPA
- name: Upload Release Archive
uses: actions/upload-artifact@v3
with:
name: Release.ipa
path: ./Export_Release/DarockBili.ipa
name: Release XCArchive
path: ./DarockBili_Release.xcarchive

build_for_testing:
runs-on: macos-13
Expand Down

0 comments on commit 6bbc8ad

Please sign in to comment.