Skip to content

Commit

Permalink
fix: fix secrets file references in sed
Browse files Browse the repository at this point in the history
  • Loading branch information
charliemangano committed Nov 10, 2024
1 parent 807c47d commit 6f3199e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/AndroidBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6f3199e

Please sign in to comment.