Skip to content

Commit

Permalink
更新 text.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
yunshuangqwq authored Dec 28, 2024
1 parent 842c1eb commit 84bc69e
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/text.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build APK

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Pull Git Submodules
run: |
git submodule update --init --recursive
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'

- name: Set up Gradle
uses: gradle/gradle-build-action@v2

- name: Build APK
run: |
cd android/app
./gradlew assembleDebug --stacktrace
- name: Upload APK
uses: actions/upload-artifact@v2
with:
name: app-apks
path: android/app/build/outputs/apk/debug/*.apk

0 comments on commit 84bc69e

Please sign in to comment.