diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 6028654b..b841eddc 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -41,7 +41,13 @@ jobs: link-to-sdk: true - name: Make Gradle wrapper executable and pull LFS run: git lfs pull | chmod +x ./gradlew + - name: Decode keystore + run: | + echo ${{ secrets.QCXR_KEYSTORE_BASE64 }} | base64 --decode > qcxr.keystore - name: Build with Gradle uses: gradle/gradle-build-action@v2 with: arguments: build + env: + QCXR_KEYSTORE_ALIAS: ${{ secrets.QCXR_KEYSTORE_ALIAS }} + QCXR_KEYSTORE_PASS: ${{ secrets.QCXR_KEYSTORE_PASS }}