postgresql

Deploy to an Azure PostgreSQL database using PLSQL scripts.

MIT License

Stars
23
Committers
9

Bot releases are hidden (Show)

postgresql - v1.2.0 Latest Release

Published by DaeunYim about 2 years ago

Fix firewall rule issue

postgresql - GitHub Action for Azure PostgreSQL

Published by N-Usha about 4 years ago

Azure PostgreSQL Action enables you to automate workflows to deploy updates to Azure Database for PostgreSQL server. You can run a single PL/SQL file or multiple files from a single parent folder against your Azure Database for PostgreSQL server.

The action uses Connection String for authentication and PL/SQL scripts to deploy to your PostgreSQL database.

Sample workflow to deploy to an Azure database for PostgreSQL server using Azure Login

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    
    steps:
     - uses: actions/[email protected]
     - uses: Azure/login@v1
       with:
         creds: ${{secrets.AZURE_CREDENTIALS}}
     - uses: azure/postgresql@v1
      with:
        connection-string: ${{ secrets.AZURE_POSTGRESQL_CONNECTION_STRING }}
        server-name: REPLACE_THIS_WITH_YOUR_POSTGRESQL_SERVER_NAME
        plsql-file: "sql_files/*.sql"
Package Rankings
Top 9.04% on Github actions
Related Projects