From 48c9b67f2e96a4baf2824f47a7561773874060b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George=20Kazami=20=5B=E4=B9=94=E6=B2=BB=C2=B7=E9=A2=A8?= =?UTF-8?q?=E8=A6=8B=5D?= Date: Wed, 15 Feb 2023 09:35:14 +0000 Subject: [PATCH] Update app-prebuild.yml --- .github/workflows/app-prebuild.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/app-prebuild.yml b/.github/workflows/app-prebuild.yml index f0abaa6..68cde16 100644 --- a/.github/workflows/app-prebuild.yml +++ b/.github/workflows/app-prebuild.yml @@ -13,6 +13,9 @@ on: # Allows you to run this workflow manually from the Actions tab workflow_dispatch: +env: + ANDROID_KEY: ${{ secrets.ANDROID_KEY }} # location of your client code + # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: # This workflow contains a single job called "build" @@ -37,6 +40,8 @@ jobs: with: channel: 'stable' # or: 'beta', 'dev' or 'master' + - name: Set android sign key for app building + - run: touch ./android/key.properties && echo $ANDROID_KEY > ./android/key.properties - run: flutter pub get # - run: flutter test - run: flutter build apk