Skip to content

Commit

Permalink
fix(build): escape characters causing errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jatindotdev committed Apr 26, 2024
1 parent d571de1 commit 24d3bd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ jobs:
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
SUPABASE_ANON_KEY: ${{ secrets.SUPABASE_ANON_KEY }}
run: |
sed -i "s/process.env.EXPO_PUBLIC_SUPABASE_URL as string;/\"$SUPABASE_URL\";/g" lib/supabase.ts;
sed -i "s/process.env.EXPO_PUBLIC_SUPABASE_ANON_KEY as string;/\"$SUPABASE_ANON_KEY\";/g" lib/supabase.ts;
sed -i "" "s/process.env.EXPO_PUBLIC_SUPABASE_URL as string;/\"$SUPABASE_URL\";/g" lib/supabase.ts;
sed -i "" "s/process.env.EXPO_PUBLIC_SUPABASE_ANON_KEY as string;/\"$SUPABASE_ANON_KEY\";/g" lib/supabase.ts;
- name: prebuild
run: pnpx expo prebuild --platform android
Expand Down

0 comments on commit 24d3bd4

Please sign in to comment.