From 84eef0c77102f3775ef1ccc3d7b7102216423aac Mon Sep 17 00:00:00 2001 From: Michael Bely Date: Thu, 22 Feb 2024 19:01:59 +0300 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 161b06a99..fecd827ff 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,8 +15,24 @@ jobs: steps: - uses: actions/checkout@v2 + + - name: Build GMS Release Artifacts + run: ./gradlew assembleGmsRelease + + - name: Build HMS Release Artifacts + run: ./gradlew assembleHmsRelease + + - name: Build FOSS Release Artifacts + run: ./gradlew assembleFossRelease + + - name: Upload Artifacts to Outputs + uses: actions/upload-artifact@v2 + with: + path: | + app/build/outputs/apk + - uses: ncipollo/release-action@v1 with: - artifacts: "release.tar.gz,foo/*.txt" + artifacts: "release.tar.gz,foo/*.txt,android-app/build/outputs/apk/**/*.apk" artifactErrorsFailBuild: false - generateReleaseNotes: true \ No newline at end of file + generateReleaseNotes: true