chore: add different builds for tvos and ios #2
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: | |
branches: | |
- main | |
- github-build | |
release: | |
types: [ published ] | |
jobs: | |
build_ios_without_signing_tvos: | |
name: Build Expo (iOS) Without Signing | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Prebuild iOS | |
env: | |
EXPO_TV: 1 | |
run: npx expo prebuild -p ios --clean | |
- name: Build Expo IPA | |
run: | | |
cd ios | |
xcodebuild -scheme reacttube -workspace reacttube.xcworkspace -configuration release archive -archivePath reacttube.xcarchive CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | |
../scripts/xcarchive_to_ipa.sh reacttube.xcarchive | |
- name: Upload IPA | |
uses: actions/upload-artifact@v4 | |
with: | |
name: tvos_ipa | |
path: ios/*.ipa | |
- name: Upload IPA to Release | |
if: ${{ github.event_name == 'release' }} | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: ios/*.ipa | |
build_ios_without_signing_phone: | |
name: Build Expo (iOS) Without Signing | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Prebuild iOS | |
run: npx expo prebuild -p ios --clean | |
- name: Build Expo IPA | |
run: | | |
cd ios | |
xcodebuild -scheme reacttube -workspace reacttube.xcworkspace -configuration release archive -archivePath reacttube.xcarchive CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | |
../scripts/xcarchive_to_ipa.sh reacttube.xcarchive | |
- name: Upload IPA | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ios_ipa | |
path: ios/*.ipa | |
- name: Upload IPA to Release | |
if: ${{ github.event_name == 'release' }} | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: ios/*.ipa |