From 2ac55e7aeedd2037bb2e596298a885c9d9a3c84d Mon Sep 17 00:00:00 2001 From: Marc K Date: Sat, 23 Jul 2022 17:17:34 +0200 Subject: [PATCH] CI workflow: upload apk to assets --- .github/workflows/publish-debug.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish-debug.yml b/.github/workflows/publish-debug.yml index 3f9f3d0..79e45be 100644 --- a/.github/workflows/publish-debug.yml +++ b/.github/workflows/publish-debug.yml @@ -20,10 +20,11 @@ jobs: - name: Build with Gradle run: ./gradlew build - name: Build Debug APK - run: ./gradlew assembleDebug + run: ./gradlew assemble - - name: Upload debug build APK - uses: actions/upload-artifact@v3 + - name: Release with Notes + uses: softprops/action-gh-release@v1 with: - name: app-debug - path: app/build/outputs/apk/debug/app-debug.apk + files: app/build/outputs/apk/release/app-release-unsigned.apk + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}