chore: rename workflows

This commit is contained in:
DIYgod 2025-04-07 23:37:07 +08:00
parent 510db5dd1d
commit 29555ef021
No known key found for this signature in database
4 changed files with 8 additions and 12 deletions

View File

@ -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'

View File

@ -1,4 +1,4 @@
name: Build
name: Build Desktop
on:
push:

View File

@ -1,4 +1,4 @@
name: Build iOS IPA for development
name: Build iOS for development
on:
push:

View File

@ -1,4 +1,4 @@
name: Build iOS IPA
name: Build iOS
on:
push: