Skip to content

Commit 4b8a8d1

Browse files
committed
Implement build pipeline
1 parent 3b44033 commit 4b8a8d1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/actions/build_android/action.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ runs:
55
using: 'composite'
66

77
steps:
8-
- name: Checkout code
9-
uses: actions/checkout@v2
10-
118
- name: Set up JDK
129
uses: actions/setup-java@v3
1310
with:

.github/actions/build_ios/action.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ runs:
55
using: 'composite'
66

77
steps:
8-
- name: Checkout code
9-
uses: actions/checkout@v2
10-
118
- name: Install Fastlane
129
run: gem install fastlane
1310

.github/workflows/BuildLibrary.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,19 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v3
18+
1619
- name: Build Android Library
1720
uses: ./.github/actions/build_android
1821

1922
build-ios:
2023
runs-on: macos-latest
2124

2225
steps:
26+
- name: Checkout code
27+
uses: actions/checkout@v3
28+
2329
- name: Build iOS Library
2430
uses: ./.github/actions/build_ios
2531

0 commit comments

Comments
 (0)