MM-60705 DB migration: added update_at column to draft table for mobile #1855
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: build-pr | |
on: | |
pull_request: | |
types: | |
- labeled | |
env: | |
NODE_VERSION: 20.13.1 | |
TERM: xterm | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
if: ${{ github.event.label.name == 'Build Apps for PR' || github.event.label.name == 'Build App for iOS' || github.event.label.name == 'Build App for Android' }} | |
steps: | |
- name: ci/checkout-repo | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: ci/test | |
uses: ./.github/actions/test | |
build-ios-pr: | |
runs-on: macos-14-large | |
if: ${{ github.event.label.name == 'Build Apps for PR' || github.event.label.name == 'Build App for iOS' }} | |
needs: | |
- test | |
steps: | |
- name: ci/checkout-repo | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: ci/prepare-ios-build | |
uses: ./.github/actions/prepare-ios-build | |
- name: ci/output-ssh-private-key | |
shell: bash | |
run: | | |
SSH_KEY_PATH=~/.ssh/id_ed25519 | |
mkdir -p ~/.ssh | |
echo -e '${{ secrets.MM_MOBILE_PRIVATE_DEPLOY_KEY }}' > ${SSH_KEY_PATH} | |
chmod 0600 ${SSH_KEY_PATH} | |
ssh-keygen -y -f ${SSH_KEY_PATH} > ${SSH_KEY_PATH}.pub | |
- name: ci/build-ios-pr | |
env: | |
BRANCH_TO_BUILD: "${{ github.event.pull_request.head.ref }}" | |
AWS_ACCESS_KEY_ID: "${{ secrets.MM_MOBILE_PR_AWS_ACCESS_KEY_ID }}" | |
AWS_SECRET_ACCESS_KEY: "${{ secrets.MM_MOBILE_PR_AWS_SECRET_ACCESS_KEY }}" | |
FASTLANE_TEAM_ID: "${{ secrets.MM_MOBILE_FASTLANE_TEAM_ID }}" | |
IOS_API_ISSUER_ID: "${{ secrets.MM_MOBILE_IOS_API_ISSUER_ID }}" | |
IOS_API_KEY: "${{ secrets.MM_MOBILE_IOS_API_KEY }}" | |
IOS_API_KEY_ID: "${{ secrets.MM_MOBILE_IOS_API_KEY_ID }}" | |
MATCH_GIT_URL: "${{ secrets.MM_MOBILE_MATCH_GIT_URL }}" | |
MATCH_PASSWORD: "${{ secrets.MM_MOBILE_MATCH_PASSWORD }}" | |
MATTERMOST_WEBHOOK_URL: "${{ secrets.MM_MOBILE_PR_MATTERMOST_WEBHOOK_URL }}" | |
run: bundle exec fastlane ios build --env ios.pr | |
working-directory: ./fastlane | |
- name: ci/upload-ios-pr-build | |
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 | |
with: | |
name: ios-build-pr-${{ github.run_id }} | |
path: "*.ipa" | |
build-android-pr: | |
runs-on: ubuntu-22.04 | |
if: ${{ github.event.label.name == 'Build Apps for PR' || github.event.label.name == 'Build App for Android' }} | |
needs: | |
- test | |
steps: | |
- name: ci/checkout-repo | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: ci/prepare-android-build | |
uses: ./.github/actions/prepare-android-build | |
env: | |
STORE_FILE: "${{ secrets.MM_MOBILE_STORE_FILE }}" | |
STORE_ALIAS: "${{ secrets.MM_MOBILE_STORE_ALIAS }}" | |
STORE_PASSWORD: "${{ secrets.MM_MOBILE_STORE_PASSWORD }}" | |
MATTERMOST_BUILD_GH_TOKEN: "${{ secrets.MATTERMOST_BUILD_GH_TOKEN }}" | |
- name: ci/build-android-pr | |
env: | |
BRANCH_TO_BUILD: "${{ github.event.pull_request.head.ref }}" | |
AWS_ACCESS_KEY_ID: "${{ secrets.MM_MOBILE_PR_AWS_ACCESS_KEY_ID }}" | |
AWS_SECRET_ACCESS_KEY: "${{ secrets.MM_MOBILE_PR_AWS_SECRET_ACCESS_KEY }}" | |
MATTERMOST_WEBHOOK_URL: "${{ secrets.MM_MOBILE_PR_MATTERMOST_WEBHOOK_URL }}" | |
run: bundle exec fastlane android build --env android.pr | |
working-directory: ./fastlane | |
- name: ci/upload-android-pr-build | |
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 | |
with: | |
name: android-build-pr-${{ github.run_id }} | |
path: "*.apk" |