From 7c6e6a414c9ca60be182afd59d4c6cf831fb4078 Mon Sep 17 00:00:00 2001 From: Blazebrain Date: Wed, 3 Jul 2024 20:48:50 +0100 Subject: [PATCH] ci: Add missing secret key --- .github/workflows/automated_integration_test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/automated_integration_test.yml b/.github/workflows/automated_integration_test.yml index d6c218da5..7b2fe4639 100644 --- a/.github/workflows/automated_integration_test.yml +++ b/.github/workflows/automated_integration_test.yml @@ -120,6 +120,7 @@ jobs: echo "const salt = '${{ secrets.SALT }}';" > lib/.secrets.g.dart echo "const keychainSalt = '${{ secrets.KEY_CHAIN_SALT }}';" >> lib/.secrets.g.dart echo "const key = '${{ secrets.KEY }}';" >> lib/.secrets.g.dart + echo "const seeds = '${{ secrets.SEEDS }}';" >> lib/.secrets.g.dart echo "const walletSalt = '${{ secrets.WALLET_SALT }}';" >> lib/.secrets.g.dart echo "const shortKey = '${{ secrets.SHORT_KEY }}';" >> lib/.secrets.g.dart echo "const backupSalt = '${{ secrets.BACKUP_SALT }}';" >> lib/.secrets.g.dart