From f82a95a3a8e4e189f42bc20ad30d99d4f64e09ab Mon Sep 17 00:00:00 2001 From: otsmr Date: Sat, 19 Jul 2025 00:14:39 +0200 Subject: [PATCH] updating key alias --- .github/workflows/release_github.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release_github.yml b/.github/workflows/release_github.yml index 755c99a..b4bd513 100644 --- a/.github/workflows/release_github.yml +++ b/.github/workflows/release_github.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: {} push: branches: - - main_disabled + - main # paths: # - lib/** # - pubspec.lock @@ -34,8 +34,8 @@ jobs: - name: Create key.properties file run: | echo "storePassword=${{ secrets.STORE_PASSWORD }}" >> ./android/key.properties - echo "keyPassword=${{ secrets.STORE_PASSWORD }}" >> ./android/key.properties - echo "keyAlias=androidreleasekey" >> key.properties + echo "keyPassword=${{ secrets.KEY_PASSWORD }}" >> ./android/key.properties + echo "keyAlias=github-releases-signature" >> ./android/key.properties echo "storeFile=./keystore.jks" >> ./android/key.properties - name: Create keystore file