From dadbfd79f6a84da30f941520c956ff914f995945 Mon Sep 17 00:00:00 2001 From: antonio Date: Mon, 10 Apr 2023 18:25:40 +0200 Subject: [PATCH] Github Action tuning --- .github/workflows/github_release.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/github_release.yml b/.github/workflows/github_release.yml index b65b83fe..113546cd 100644 --- a/.github/workflows/github_release.yml +++ b/.github/workflows/github_release.yml @@ -55,12 +55,7 @@ jobs: KEY_PASSWORD_GITHUB: ${{ secrets.KEY_PASSWORD_GITHUB }} KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }} run: ./gradlew bundleRelease - - - release: - needs: build - runs-on: ubuntu-latest - steps: + - name: Upload Release Build to Artifacts uses: actions/upload-artifact@v3 with: @@ -69,6 +64,15 @@ jobs: app/**/*.apk app/**/*.aab if-no-files-found: error + + + release: + needs: build + runs-on: ubuntu-latest + steps: + - uses: actions/download-artifact@v3 + with: + name: release-bundle - name: Create Github Release uses: softprops/action-gh-release@v1