From d5aff69ebbcfb5078b010c0d78ad0057a7c726d6 Mon Sep 17 00:00:00 2001 From: Malopieds Date: Tue, 23 Jul 2024 22:45:15 +0200 Subject: [PATCH] fix: build for pr --- .github/workflows/build_pr.yml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.github/workflows/build_pr.yml b/.github/workflows/build_pr.yml index b60aded69..51576ccc7 100644 --- a/.github/workflows/build_pr.yml +++ b/.github/workflows/build_pr.yml @@ -10,9 +10,6 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Decode Keystore - run: echo ${{ secrets.KEYSTORE }} | base64 -d >> app/music-debug.jks - - name: set up JDK 17 uses: actions/setup-java@v3 with: @@ -22,13 +19,3 @@ jobs: - name: Build debug APK and run jvm tests run: ./gradlew assembleDebug lintFossDebug testFossDebugUnitTest --stacktrace -DskipFormatKtlint - env: - MUSIC_DEBUG_KEYSTORE_FILE: 'music-debug.jks' - MUSIC_DEBUG_SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }} - MUSIC_DEBUG_SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }} - - - name: Upload APK - uses: actions/upload-artifact@v3 - with: - name: app - path: app/build/outputs/apk/foss/debug/*.apk