From 95386cca7f6ea14f40a8d1b5f7a8dfe773e43d09 Mon Sep 17 00:00:00 2001 From: Juan Gilsanz Polo Date: Fri, 26 May 2023 03:14:54 +0200 Subject: [PATCH] Keystore annd properties on base64 --- .github/workflows/release.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 9e4bcce..c71180c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -12,6 +12,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 + - name: Decode android/keystore.jks + run: echo "${{ secrets.KEYSTORE_JKS }}" | base64 --decode > android/keystore.jks + - name: Decode android/key.properties + run: echo "${{ secrets.KEY_PROPERTIES }}" | base64 --decode > android/key.properties - name: Update version in YAML run: sed -i 's/99.99.99+99/${{ github.event.inputs.version }}/g' pubspec.yaml - name: Update KeyStore password in gradle properties