From 663f559d20bd4955b5e871e7562b3223fa83fc40 Mon Sep 17 00:00:00 2001 From: Yu-Hsuan Date: Fri, 8 Dec 2023 20:03:10 +0100 Subject: [PATCH] decrypt android build secret --- .github/workflows/mobile.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/mobile.yml b/.github/workflows/mobile.yml index 062b60f2..f89a295b 100644 --- a/.github/workflows/mobile.yml +++ b/.github/workflows/mobile.yml @@ -30,6 +30,8 @@ jobs: mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles gpg --quiet --batch --yes --decrypt --passphrase="${{ secrets.SECRET_KEY }}" --output ../../mobile_flutter/wlanthermo_flutter_app/google-services.json google-services.json.gpg gpg --quiet --batch --yes --decrypt --passphrase="${{ secrets.SECRET_KEY }}" --output ../../mobile_flutter/wlanthermo_flutter_app/ios/bell.mp3 bell.mp3.gpg + gpg --quiet --batch --yes --decrypt --passphrase="${{ secrets.SECRET_KEY }}" --output ../../mobile_flutter/wlanthermo_flutter_app/android/key.properties key.properties.gpg + gpg --quiet --batch --yes --decrypt --passphrase="${{ secrets.SECRET_KEY }}" --output ../../mobile_flutter/wlanthermo_flutter_app/android/keystore.jks keystore.jks.gpg - uses: actions/setup-java@v2 with: