chore: rename workflows
This commit is contained in:
parent
510db5dd1d
commit
29555ef021
|
|
@ -4,17 +4,13 @@ on:
|
|||
push:
|
||||
branches: [dev]
|
||||
paths:
|
||||
- "apps/mobile/web-app/**"
|
||||
- "apps/mobile/native/**"
|
||||
- "apps/mobile/package.json"
|
||||
- "apps/mobile/app.config.ts"
|
||||
- "apps/mobile/**"
|
||||
- "pnpm-lock.yaml"
|
||||
pull_request:
|
||||
branches: [dev]
|
||||
paths:
|
||||
- "apps/mobile/web-app/**"
|
||||
- "apps/mobile/native/**"
|
||||
- "apps/mobile/package.json"
|
||||
- "apps/mobile/app.config.ts"
|
||||
- "apps/mobile/**"
|
||||
- "pnpm-lock.yaml"
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
profile:
|
||||
|
|
@ -68,7 +64,7 @@ jobs:
|
|||
|
||||
- name: 🔨 Build Android app
|
||||
working-directory: apps/mobile
|
||||
run: eas build --platform android --profile ${{ github.event.inputs.profile || 'preview' }} --local --output=${{ github.workspace }}/build.apk
|
||||
run: eas build --platform android --profile ${{ github.event.inputs.profile || 'preview' }} --local --output=${{ github.workspace }}/build.${{ github.event.inputs.profile == 'production' && 'aab' || 'apk' }}
|
||||
|
||||
- name: 📤 Upload apk Artifact
|
||||
if: github.event.inputs.profile != 'production'
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
name: Build
|
||||
name: Build Desktop
|
||||
|
||||
on:
|
||||
push:
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
name: Build iOS IPA for development
|
||||
name: Build iOS for development
|
||||
|
||||
on:
|
||||
push:
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
name: Build iOS IPA
|
||||
name: Build iOS
|
||||
|
||||
on:
|
||||
push:
|
||||
Loading…
Reference in New Issue