Skip to content

Commit

Permalink
ci: test build config
Browse files Browse the repository at this point in the history
  • Loading branch information
yichengchen committed Feb 7, 2025
1 parent 0f38f62 commit ff40f0a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build workflow
on:
pull_request:
push:
branches: [ "main" ]
branches: [ "main", "fix/ci"]

jobs:
build:
Expand All @@ -14,14 +14,10 @@ jobs:
uses: actions/checkout@v4
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
xcode-version: '16.1'
- name: Build
env:
scheme: ${{ 'default' }}
platform: ${{ 'iOS Simulator' }}
run: |
bundle install -j 4
bundle exec fastlane build_unsign_ipa
fastlane build_unsign_ipa
# - name: List, filter and delete artifacts
# if: github.ref == 'refs/heads/main' && github.event_name == 'push'
Expand Down
2 changes: 2 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ platform :tvos do
lane :build_unsign_ipa do
sh "cd .. && rm -rf Payload *.xcarchive *.ipa *.zip"
build_app(
destination: "generic/platform=tvOS",
configuration: "Release",
codesigning_identity:"",
skip_codesigning: true,
skip_package_ipa: true,
Expand Down

0 comments on commit ff40f0a

Please sign in to comment.