mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 17:13:25 +00:00
118 lines
2.9 KiB
YAML
118 lines
2.9 KiB
YAML
name: "build mobile app via /build"
|
|
|
|
on:
|
|
issue_comment:
|
|
types: [created]
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
build-android:
|
|
runs-on: ubuntu-latest
|
|
if: github.event.issue.pull_request && contains(github.event.comment.body, '/build')
|
|
steps:
|
|
- uses: xt0rted/pull-request-comment-branch@v2
|
|
id: comment-branch
|
|
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ steps.comment-branch.outputs.head_ref }}
|
|
|
|
- uses: pnpm/action-setup@v3
|
|
name: Install pnpm
|
|
with:
|
|
version: 8
|
|
run_install: false
|
|
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 21
|
|
cache: "pnpm"
|
|
|
|
- name: Set up JDK 17
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
java-version: "17"
|
|
distribution: "temurin"
|
|
|
|
- name: Setup Android SDK
|
|
uses: android-actions/setup-android@v3
|
|
|
|
- name: Cache Node Modules
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: '**/node_modules'
|
|
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install
|
|
|
|
- name: Setup Gradle
|
|
uses: gradle/actions/setup-gradle@v3
|
|
|
|
- name: Build Android app
|
|
run: cd apps/expo && pnpm apk
|
|
|
|
- name: Upload movie-web.apk as artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: apk
|
|
path: ./apps/expo/android/app/build/movie-web.apk
|
|
|
|
build-ios:
|
|
runs-on: macos-14
|
|
if: github.event.issue.pull_request && contains(github.event.comment.body, '/build')
|
|
steps:
|
|
- uses: xt0rted/pull-request-comment-branch@v2
|
|
id: comment-branch
|
|
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ steps.comment-branch.outputs.head_ref }}
|
|
|
|
- name: Xcode Select Version
|
|
uses: maxim-lobanov/setup-xcode@v1
|
|
with:
|
|
xcode-version: "15.1.0"
|
|
|
|
- uses: pnpm/action-setup@v3
|
|
name: Install pnpm
|
|
with:
|
|
version: 8
|
|
run_install: false
|
|
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 21
|
|
cache: "pnpm"
|
|
|
|
- name: Cache Node Modules
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: '**/node_modules'
|
|
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install
|
|
|
|
- name: Cache Pods
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: apps/expo/ios
|
|
key: ${{ runner.os }}-pods-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
|
|
- name: Build iOS app
|
|
run: cd apps/expo && pnpm ipa
|
|
|
|
- name: Upload movie-web.ipa as artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ipa
|
|
path: ./apps/expo/ios/build/movie-web.ipa
|