Skip to content

Commit b4b48f6

Browse files
committed
fixing incorrect order
1 parent 5197668 commit b4b48f6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,7 @@ You will use the connection string as a GitHub secret.
155155
- uses: actions/checkout@v1
156156
- uses: azure/login@v1
157157
with:
158-
client-id: ${{ secrets.AZURE_CLIENT_ID }}
159-
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
160-
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
158+
client-id: ${{ secrets.AZURE_CREDENTIALS }}
161159
162160
- uses: azure/postgresql@v1
163161
with:
@@ -190,7 +188,9 @@ You will use the connection string as a GitHub secret.
190188
- uses: actions/checkout@v1
191189
- uses: azure/login@v1
192190
with:
193-
creds: ${{ secrets.AZURE_CREDENTIALS }}
191+
client-id: ${{ secrets.AZURE_CLIENT_ID }}
192+
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
193+
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
194194
195195
- uses: azure/postgresql@v1
196196
with:

0 commit comments

Comments
 (0)