Skip to content

Commit

Permalink
fix(build): sed command order
Browse files Browse the repository at this point in the history
  • Loading branch information
jatindotdev committed Apr 25, 2024
1 parent b0c90ec commit c025165
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 's/process.env.EXPO_PUBLIC_SUPABASE_URL as string;/"$SUPABASE_URL"/g' -i '' lib/supabase.ts;
sed 's/process.env.EXPO_PUBLIC_SUPABASE_ANON_KEY as string;/"$SUPABASE_ANON_KEY"/g' -i '' 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 c025165

Please sign in to comment.