0
0
Fork 0
mirror of https://github.com/tj-actions/pg-dump.git synced 2025-06-11 13:12:32 +00:00

Updated README.md.

This commit is contained in:
Tonye Jack 2021-01-30 21:36:29 -05:00
parent 4ed55614ba
commit 41b19de949
2 changed files with 9 additions and 8 deletions

View file

@ -8,7 +8,7 @@ inputs:
path:
description: 'Backup file output location'
required: true
args:
options:
description: 'Extra arguments passed to pg_dump'
required: true
default: '-O'
@ -17,7 +17,7 @@ runs:
using: 'composite'
steps:
- run: |
pg_dump "${{ inputs.args }}" -d "${{ inputs.database_url }}" > "${{ inputs.path }}"
pg_dump "${{ inputs.options }}" -d "${{ inputs.database_url }}" > "${{ inputs.path }}"
shell: bash
branding:
icon: hard-drive