From 146d60560aaf249ff3403d4c63c221f27b3c7ccf Mon Sep 17 00:00:00 2001 From: xiajiid Date: Sun, 8 Feb 2026 10:08:15 +0800 Subject: [PATCH] Add gradle wrapper files --- .github/workflows/build.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 9d106d8..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Android Build - -on: - push: - branches: [ "main" ] # 当代码推送到 main 分支时触发 - pull_request: - branches: [ "main" ] - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: set up JDK 17 - uses: actions/setup-java@v4 - with: - java-version: '17' - distribution: 'temurin' - cache: gradle - - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - - name: Build with Gradle - run: ./gradlew assembleDebug # 这里的命令决定打什么包 - - - name: Upload APK - uses: actions/upload-artifact@v4 - with: - name: app-debug - path: app/build/outputs/apk/debug/app-debug.apk \ No newline at end of file