From 725fa29587626da8f8c3d5959dad87779473fbb4 Mon Sep 17 00:00:00 2001 From: ugurcan Date: Thu, 26 Jun 2025 12:57:09 +0300 Subject: [PATCH] Update build.yml fix No files were found with the provided path: ./service/build/outputs/mapping/release. No artifacts will be uploaded. --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4621229..315aaa6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,9 +2,9 @@ name: Build on: push: - branches: [ "master" ] + branches: ["master"] pull_request: - branches: [ "master" ] + branches: ["master"] workflow_dispatch: jobs: @@ -32,12 +32,11 @@ jobs: - name: Setup Android SDK uses: android-actions/setup-android@v3 with: - packages: '' + packages: "" - name: Build with Gradle run: | - ./gradlew zipRelease - ./gradlew zipDebug + ./gradlew zipRelease zipDebug assembleRelease - name: Prepare artifact if: success() @@ -61,8 +60,9 @@ jobs: path: "./module-debug/*" - name: Upload release mappings + if: success() uses: actions/upload-artifact@v4 with: name: release-mappings path: "./service/build/outputs/mapping/release" - + if-no-files-found: ignore