Skip to content

Commit

Permalink
Update action.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
mansueli authored Sep 25, 2023
1 parent 1cf8f16 commit bf9c3af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ runs:
run: supabase db start
shell: bash
- name: Backup roles
run: supabase db dump --db-url "{{ inputs.supabase_url }}" -f {{ inputs.file_prefix }}roles.sql --role-only
run: supabase db dump --db-url "${{ inputs.supabase_url }}" -f ${{ inputs.file_prefix }}roles.sql --role-only
shell: bash
- name: Backup schema
run: supabase db dump --db-url "{{ inputs.supabase_url }}" -f {{ inputs.file_prefix }}schema.sql
run: supabase db dump --db-url "${{ inputs.supabase_url }}" -f ${{ inputs.file_prefix }}schema.sql
shell: bash
- name: Backup data
run: supabase db dump --db-url "{{ inputs.supabase_url }}" -f {{ inputs.file_prefix }}data.sql --data-only --use-copy
run: supabase db dump --db-url "${{ inputs.supabase_url }}" -f ${{ inputs.file_prefix }}data.sql --data-only --use-copy
shell: bash

branding:
Expand Down

0 comments on commit bf9c3af

Please sign in to comment.