运行生成一个备份 ... steps : - uses : actions/checkout@v2 - name : Postgres Dump Backup uses : tj-actions/pg-dump@v1 with : database_url : " postgres://test_user:test_user_password@localhost:5432/testdb " path : " backups/backup.sql " options : " -O " 笔记: :warning: 确保备份输出文件已经存在。 例子 steps : - uses : actions/checkout@v2 - name : Cr