Skip to content

Commit b9fcb00

Browse files
committed
Implement build pipeline
1 parent 81614e7 commit b9fcb00

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/actions/build_android/action.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ runs:
1818

1919
- name: Install Fastlane
2020
run: gem install fastlane
21+
shell: bash
2122

2223
- name: Setup Node
2324
uses: actions/setup-node@v3
@@ -26,6 +27,7 @@ runs:
2627

2728
- name: Build Android Library with Fastlane
2829
run: cd android && fastlane android build_mendix_native
30+
shell: bash
2931

3032
- name: Copy Android Library to Shared Directory
3133
run: mkdir -p ${{ github.workspace }}/shared/libs/android && cp ./artifacts/aar/mendixnative-release.aar ${{ github.workspace }}/shared/libs/android/mendixnative-release.aar

.github/actions/build_ios/action.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ runs:
77
steps:
88
- name: Install Fastlane
99
run: gem install fastlane
10+
shell: bash
1011

1112
- name: Setup Node
1213
uses: actions/setup-node@v3
@@ -15,6 +16,7 @@ runs:
1516

1617
- name: Build iOS Library with Fastlane
1718
run: cd ios && fastlane ios build_mendix_native
19+
shell: bash
1820

1921
- name: Copy iOS Library to Shared Directory
2022
run: mkdir -p ${{ github.workspace }}/shared/libs/ios && cp ./ios/build/mendixnative/mendixnative.xcframework ${{ github.workspace }}/shared/libs/ios/mendixnative.xcframework

0 commit comments

Comments
 (0)