DEV: Reduce psql output when restoring db in github actions (#23391)

This output is around 30k lines long, and serves no real purpose. In the unlikely event of an error, it will still be shown.
This commit is contained in:
David Taylor 2023-09-06 22:19:59 +01:00 committed by GitHub
parent 30528eac5c
commit 31563e6b29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -125,7 +125,7 @@ jobs:
- name: Restore database from cache
if: steps.app-cache.outputs.cache-hit == 'true'
run: psql -f tmp/app-cache/cache.sql postgres
run: psql --quiet -o /dev/null -f tmp/app-cache/cache.sql postgres
- name: Restore uploads from cache
if: steps.app-cache.outputs.cache-hit == 'true'