We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c9c7ab commit 5ded195Copy full SHA for 5ded195
.github/actions/build_ios/actions.yml
@@ -0,0 +1,19 @@
1
+name: 'Build iOS App'
2
+description: 'Builds the iOS app using Fastlane'
3
+
4
+runs:
5
+ using: 'composite'
6
7
+ steps:
8
+ - name: Hello Function
9
+ run: echo "Hello!"
10
+ shell: bash
11
12
+ - name: Set up Ruby
13
+ uses: ruby/setup-ruby@v1
14
+ with:
15
+ ruby-version: '2.7'
16
17
+ - name: Install Fastlane
18
+ run: gem install fastlane
19
.github/actions/build_ios/actions_ios.yml
.github/workflows/build_ios.yml
@@ -0,0 +1,20 @@
+name: "iOS Test"
+on:
+ push:
+ branches:
+ - main
+ pull_request:
+jobs:
+ test:
+ runs-on: macOS-latest
+ - name: Checkout code
+ uses: actions/checkout@v3
+ - name: Build iOS
20
+ uses: ./.github/actions/build_ios
0 commit comments