Query to PostgreSQL
Version updated for yakubique/query-postgresql to version v1.
- This action is used across all versions by ? repositories.
Go to the GitHub Marketplace to find the latest changes.
Release notes
query-postgresql
Make query to PostgreSQL and return JSON Full Changelog: https://github.com/yakubique/query-postgresql/commits/v1
Usage
For live examples, please see actions
uses: yakubique/query-postgresql@v1
with:
query: |
select true as result
host: ${{ env.PG_HOST }}
port: ${{ env.PG_PORT }}
username: ${{ env.PG_USER }}
password: ${{ env.PG_PWD }}
db: ${{ env.PG_DB }}
ssl: 'false'