Skip to content

Commit 3e03ce0

Browse files
committed
ci: test build config
1 parent 0f38f62 commit 3e03ce0

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/build.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build workflow
22
on:
33
pull_request:
44
push:
5-
branches: [ "main" ]
5+
branches: [ "main", "fix/ci"]
66

77
jobs:
88
build:
@@ -16,12 +16,8 @@ jobs:
1616
with:
1717
xcode-version: latest-stable
1818
- name: Build
19-
env:
20-
scheme: ${{ 'default' }}
21-
platform: ${{ 'iOS Simulator' }}
2219
run: |
23-
bundle install -j 4
24-
bundle exec fastlane build_unsign_ipa
20+
fastlane build_unsign_ipa
2521
2622
# - name: List, filter and delete artifacts
2723
# if: github.ref == 'refs/heads/main' && github.event_name == 'push'

fastlane/Fastfile

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ platform :tvos do
1313
lane :build_unsign_ipa do
1414
sh "cd .. && rm -rf Payload *.xcarchive *.ipa *.zip"
1515
build_app(
16+
destination: "generic/platform=tvOS",
17+
configuration: "Release",
1618
codesigning_identity:"",
1719
skip_codesigning: true,
1820
skip_package_ipa: true,

0 commit comments

Comments
 (0)