Skip to content

Commit fd99968

Browse files
authored
Merge pull request #104238 from haroon9/patch-1
Update for change to plsql-file from sql-file
2 parents d57e763 + f98c3e3 commit fd99968

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/postgresql/single-server/how-to-deploy-github-action.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ You'll use the connection string as a GitHub secret.
131131
with:
132132
connection-string: ${{ secrets.AZURE_POSTGRESQL_CONNECTION_STRING }}
133133
server-name: POSTGRESQL_SERVER_NAME
134-
sql-file: './data.sql'
134+
plsql-file: './data.sql'
135135
```
136136

137137
3. Complete your workflow by adding an action to logout of Azure. Here's the completed workflow. The file appears in the `.github/workflows` folder of your repository.
@@ -161,7 +161,7 @@ You'll use the connection string as a GitHub secret.
161161
with:
162162
server-name: POSTGRESQL_SERVER_NAME
163163
connection-string: ${{ secrets.AZURE_POSTGRESQL_CONNECTION_STRING }}
164-
sql-file: './data.sql'
164+
plsql-file: './data.sql'
165165
166166
# Azure logout
167167
- name: logout
@@ -196,7 +196,7 @@ You'll use the connection string as a GitHub secret.
196196
with:
197197
server-name: POSTGRESQL_SERVER_NAME
198198
connection-string: ${{ secrets.AZURE_POSTGRESQL_CONNECTION_STRING }}
199-
sql-file: './data.sql'
199+
plsql-file: './data.sql'
200200
201201
# Azure logout
202202
- name: logout

0 commit comments

Comments
 (0)