Skip to content

Commit 4223adc

Browse files
authored
Merge pull request #25 from nginxinc/ag-fix-cert-download
Fix certificate template download
2 parents 8da7154 + 30db28c commit 4223adc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/testNginxForAzureDeploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
sed -i 's/000000/'"$GITHUB_RUN_NUMBER"'/g' test/configs/single/nginx.conf
3737
cat test/configs/single/nginx.conf
3838
- name: "Sync NGINX configuration to NGINX for Azure - single file"
39-
uses: nginxinc/[email protected].0
39+
uses: nginxinc/[email protected].1
4040
with:
4141
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
4242
resource-group-name: $TEST_RESOURCE_GROUP_NAME
@@ -56,7 +56,7 @@ jobs:
5656
sed -i 's/000000/'"$GITHUB_RUN_ID"'/g' test/configs/multi/conf.d/proxy.conf
5757
cat test/configs/multi/conf.d/proxy.conf
5858
- name: "Sync NGINX configuration and certificate to NGINX for Azure - multi file"
59-
uses: nginxinc/[email protected].0
59+
uses: nginxinc/[email protected].1
6060
with:
6161
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
6262
resource-group-name: $TEST_RESOURCE_GROUP_NAME

src/deploy-certificate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ fi
6161
arm_template_file="nginx-for-azure-certificate-template.json"
6262

6363
#get the ARM template file
64-
wget -O "$arm_template_file" https://nginxgithubactions.blob.core.windows.net/armtemplates/nginx-for-azure-certificate-template.json
64+
wget -O "$arm_template_file" https://raw.githubusercontent.com/nginxinc/nginx-for-azure-deploy-action/a69d33feaa1a8a012ec44c138ca78c6ec4db9f29/src/nginx-for-azure-certificate-template.json
6565
echo "Downloaded the ARM template for synchronizing NGINX certificate."
6666

6767
cat "$arm_template_file"

0 commit comments

Comments
 (0)