From 6f3199ed90b0d10fe133fcb9ed30a8b60648bfac Mon Sep 17 00:00:00 2001 From: charlie mangano Date: Sun, 10 Nov 2024 21:00:00 +0100 Subject: [PATCH] fix: fix secrets file references in sed --- .github/workflows/AndroidBuild.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/AndroidBuild.yml b/.github/workflows/AndroidBuild.yml index fefdfbda7..516701cd5 100644 --- a/.github/workflows/AndroidBuild.yml +++ b/.github/workflows/AndroidBuild.yml @@ -31,10 +31,10 @@ jobs: POWERSYNC_URL: ${{ secrets.POWERSYNC_URL }} TEST: "TEST_CI_VALUE" run: | - sed "s|SUPABASE_KEY|$SUPABASE_KEY|g;" secrets.properties > secrets.defaults.properties - sed "s|SERVICE_KEY|$SERVICE_KEY|g;" secrets.properties > secrets.defaults.properties - sed "s|SUPABASE_URL|$SUPABASE_URL|g;" secrets.properties > secrets.defaults.properties - sed "s|POWERSYNC_URL|$POWERSYNC_URL|g;" secrets.properties > secrets.defaults.properties + sed "s|SUPABASE_KEY|$SUPABASE_KEY|g;" secrets.defaults.properties > secrets.properties + sed "s|SERVICE_KEY|$SERVICE_KEY|g;" secrets.defaults.properties > secrets.properties + sed "s|SUPABASE_URL|$SUPABASE_URL|g;" secrets.defaults.properties > secrets.properties + sed "s|POWERSYNC_URL|$POWERSYNC_URL|g;" secrets.defaults.properties > secrets.properties sed "s|TEST|TEST|g;" secrets.defaults.properties > secrets.properties