2021-03-14 22:22:26 +01:00
|
|
|
name: build
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- candidate
|
|
|
|
- release
|
2021-03-14 21:48:28 +01:00
|
|
|
|
2021-02-09 01:16:12 +01:00
|
|
|
jobs:
|
|
|
|
build:
|
2022-05-03 00:30:35 +02:00
|
|
|
runs-on: macos-12
|
2021-02-09 01:16:12 +01:00
|
|
|
steps:
|
2021-03-14 22:22:26 +01:00
|
|
|
- name: -- Step 0 -- Extract branch name
|
|
|
|
shell: bash
|
|
|
|
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
|
|
|
|
id: branch
|
2021-02-09 01:16:12 +01:00
|
|
|
- name: -- Step 1 -- Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: -- Step 2 -- Setup node
|
2022-03-28 22:00:31 +02:00
|
|
|
uses: actions/setup-node@v3
|
2021-02-09 01:16:12 +01:00
|
|
|
with:
|
2022-03-28 22:00:31 +02:00
|
|
|
node-version: 16
|
2022-05-08 22:35:43 +02:00
|
|
|
- name: -- Step 3 -- Setup Java
|
|
|
|
uses: actions/setup-java@v3
|
|
|
|
with:
|
|
|
|
distribution: 'zulu'
|
|
|
|
java-version: '11'
|
|
|
|
- name: -- Step 4 -- Use Expo action
|
Test v4.1 (#320)
* New translations actions.json (German)
* New translations actions.json (Korean)
* New translations actions.json (Chinese Simplified)
* New translations actions.json (Chinese Traditional)
* New translations actions.json (Vietnamese)
* New translations actions.json (Italian)
* New translations actions.json (Portuguese, Brazilian)
* Bump packages
* New translations actions.json (Chinese Simplified)
* Fixed #108
* Fixed #117
* Fixed #137
* Fix badge not cleared on app launch
* Update Expo workflow
* Update build.yml
* New context menu largely working
* Fixed #158
* File format changes by `expo prebuild`
* Update .gitignore
* Try out notification sound
* Bump packages
* New Crowdin updates (#319)
* New translations actions.json (Portuguese, Brazilian)
* New translations timeline.json (Portuguese, Brazilian)
* New translations actions.json (Portuguese, Brazilian)
* New translations compose.json (Portuguese, Brazilian)
* New translations tabs.json (Portuguese, Brazilian)
* New translations actions.json (Vietnamese)
* New translations timeline.json (German)
* New translations mediaSelector.json (Italian)
* New translations contextMenu.json (Vietnamese)
* New translations contextMenu.json (Chinese Traditional)
* New translations contextMenu.json (Chinese Simplified)
* New translations contextMenu.json (Korean)
* New translations contextMenu.json (Italian)
* New translations contextMenu.json (German)
* New translations mediaSelector.json (Portuguese, Brazilian)
* New translations timeline.json (Portuguese, Brazilian)
* New translations timeline.json (Italian)
* New translations mediaSelector.json (German)
* New translations mediaSelector.json (Vietnamese)
* New translations mediaSelector.json (Chinese Traditional)
* New translations mediaSelector.json (Chinese Simplified)
* New translations mediaSelector.json (Korean)
* New translations timeline.json (Chinese Traditional)
* New translations timeline.json (Vietnamese)
* New translations timeline.json (Chinese Simplified)
* New translations timeline.json (Korean)
* New translations contextMenu.json (Portuguese, Brazilian)
* New translations mediaSelector.json (Vietnamese)
* New translations contextMenu.json (Vietnamese)
* New translations contextMenu.json (Vietnamese)
* New translations mediaSelector.json (Chinese Simplified)
* New translations contextMenu.json (German)
* New translations contextMenu.json (Italian)
* New translations contextMenu.json (Korean)
* New translations contextMenu.json (Chinese Simplified)
* New translations contextMenu.json (Portuguese, Brazilian)
2022-06-07 22:27:24 +02:00
|
|
|
uses: expo/expo-github-action@v7
|
2021-02-09 01:16:12 +01:00
|
|
|
with:
|
Test v4.1 (#320)
* New translations actions.json (German)
* New translations actions.json (Korean)
* New translations actions.json (Chinese Simplified)
* New translations actions.json (Chinese Traditional)
* New translations actions.json (Vietnamese)
* New translations actions.json (Italian)
* New translations actions.json (Portuguese, Brazilian)
* Bump packages
* New translations actions.json (Chinese Simplified)
* Fixed #108
* Fixed #117
* Fixed #137
* Fix badge not cleared on app launch
* Update Expo workflow
* Update build.yml
* New context menu largely working
* Fixed #158
* File format changes by `expo prebuild`
* Update .gitignore
* Try out notification sound
* Bump packages
* New Crowdin updates (#319)
* New translations actions.json (Portuguese, Brazilian)
* New translations timeline.json (Portuguese, Brazilian)
* New translations actions.json (Portuguese, Brazilian)
* New translations compose.json (Portuguese, Brazilian)
* New translations tabs.json (Portuguese, Brazilian)
* New translations actions.json (Vietnamese)
* New translations timeline.json (German)
* New translations mediaSelector.json (Italian)
* New translations contextMenu.json (Vietnamese)
* New translations contextMenu.json (Chinese Traditional)
* New translations contextMenu.json (Chinese Simplified)
* New translations contextMenu.json (Korean)
* New translations contextMenu.json (Italian)
* New translations contextMenu.json (German)
* New translations mediaSelector.json (Portuguese, Brazilian)
* New translations timeline.json (Portuguese, Brazilian)
* New translations timeline.json (Italian)
* New translations mediaSelector.json (German)
* New translations mediaSelector.json (Vietnamese)
* New translations mediaSelector.json (Chinese Traditional)
* New translations mediaSelector.json (Chinese Simplified)
* New translations mediaSelector.json (Korean)
* New translations timeline.json (Chinese Traditional)
* New translations timeline.json (Vietnamese)
* New translations timeline.json (Chinese Simplified)
* New translations timeline.json (Korean)
* New translations contextMenu.json (Portuguese, Brazilian)
* New translations mediaSelector.json (Vietnamese)
* New translations contextMenu.json (Vietnamese)
* New translations contextMenu.json (Vietnamese)
* New translations mediaSelector.json (Chinese Simplified)
* New translations contextMenu.json (German)
* New translations contextMenu.json (Italian)
* New translations contextMenu.json (Korean)
* New translations contextMenu.json (Chinese Simplified)
* New translations contextMenu.json (Portuguese, Brazilian)
2022-06-07 22:27:24 +02:00
|
|
|
expo-version: latest
|
2021-10-04 22:21:27 +02:00
|
|
|
token: ${{ secrets.EXPO_TOKEN }}
|
2022-05-08 22:35:43 +02:00
|
|
|
- name: -- Step 5 -- Install node dependencies
|
2021-02-11 01:42:26 +01:00
|
|
|
run: yarn install
|
2022-05-08 22:35:43 +02:00
|
|
|
- name: -- Step 6 -- Install ruby dependencies
|
2021-02-09 01:16:12 +01:00
|
|
|
run: bundle install
|
2022-05-08 22:35:43 +02:00
|
|
|
- name: -- Step 7 -- Run fastlane
|
2021-02-09 01:16:12 +01:00
|
|
|
env:
|
2022-05-03 00:04:10 +02:00
|
|
|
DEVELOPER_DIR: /Applications/Xcode_13.3.1.app/Contents/Developer
|
2021-03-14 22:22:26 +01:00
|
|
|
ENVIRONMENT: ${{ steps.branch.outputs.branch }}
|
2021-03-14 21:48:28 +01:00
|
|
|
LC_ALL: en_US.UTF-8
|
|
|
|
LANG: en_US.UTF-8
|
2021-02-09 01:16:12 +01:00
|
|
|
SENTRY_ORGANIZATION: ${{ secrets.SENTRY_ORGANIZATION }}
|
|
|
|
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
|
|
|
|
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
|
|
|
FASTLANE_USER: ${{ secrets.FASTLANE_USER }}
|
|
|
|
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
|
|
|
|
MATCH_GIT_URL: ${{ secrets.MATCH_GIT_URL }}
|
|
|
|
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
|
|
|
|
APP_STORE_CONNECT_API_KEY_KEY_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY_ID }}
|
|
|
|
APP_STORE_CONNECT_API_KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ISSUER_ID }}
|
|
|
|
APP_STORE_CONNECT_API_KEY_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY }}
|
|
|
|
ANDROID_KEYSTORE: ${{ secrets.ANDROID_KEYSTORE }}
|
|
|
|
ANDROID_KEYSTORE_PASSWORD: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }}
|
|
|
|
ANDROID_KEYSTORE_ALIAS: ${{ secrets.ANDROID_KEYSTORE_ALIAS }}
|
|
|
|
ANDROID_KEYSTORE_KEY_PASSWORD: ${{ secrets.ANDROID_KEYSTORE_KEY_PASSWORD }}
|
|
|
|
SUPPLY_JSON_KEY_DATA: ${{ secrets.SUPPLY_JSON_KEY_DATA }}
|
2021-03-04 14:11:08 +01:00
|
|
|
GH_PAT_GET_RELEASE: ${{ secrets.GH_PAT_GET_RELEASE }}
|
2021-02-09 01:16:12 +01:00
|
|
|
FL_GITHUB_RELEASE_API_BEARER: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
run: yarn app:build
|