Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump azure/webapps-deploy from 2 to 3 #596

Open
wants to merge 1 commit into
base: next
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/app-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,21 @@ jobs:
creds: '{"clientId":"${{ secrets.TF_ARM_CLIENT_ID }}","clientSecret":"${{ secrets.TF_ARM_CLIENT_SECRET }}","subscriptionId":"${{ secrets.TF_ARM_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.TF_ARM_TENANT_ID }}"}'

- name: Deploy Dev to Azure Web App
uses: azure/webapps-deploy@v2
uses: azure/webapps-deploy@v3
with:
app-name: 's185d01-chidrens-social-care-cpd-app-service'
images: 'ghcr.io/dfe-digital/childrens-social-care-cpd:${{ inputs.tag }}'
if: ${{ inputs.workspace == 'Dev' }}

- name: Deploy Test to Azure Web App
uses: azure/webapps-deploy@v2
uses: azure/webapps-deploy@v3
with:
app-name: 's185d02-chidrens-social-care-cpd-app-service'
images: 'ghcr.io/dfe-digital/childrens-social-care-cpd:${{ inputs.tag }}'
if: ${{ inputs.workspace == 'Test' }}

- name: Deploy Load-Test to Azure Web App
uses: azure/webapps-deploy@v2
uses: azure/webapps-deploy@v3
with:
app-name: 's185d03-chidrens-social-care-cpd-app-service'
slot-name: 'staging'
Expand All @@ -62,14 +62,14 @@ jobs:
if: ${{ inputs.workspace == 'Load-Test' }}

- name: Deploy Pre-Prod to Azure Web App
uses: azure/webapps-deploy@v2
uses: azure/webapps-deploy@v3
with:
app-name: 's185t01-chidrens-social-care-cpd-app-service'
images: 'ghcr.io/dfe-digital/childrens-social-care-cpd:${{ inputs.tag }}'
if: ${{ inputs.workspace == 'Pre-Prod' }}

- name: Deploy Prod to Azure Web App
uses: azure/webapps-deploy@v2
uses: azure/webapps-deploy@v3
with:
app-name: 's185p01-chidrens-social-care-cpd-app-service'
slot-name: 'staging'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
creds: '{"clientId":"${{ secrets.TF_ARM_CLIENT_ID }}","clientSecret":"${{ secrets.TF_ARM_CLIENT_SECRET }}","subscriptionId":"${{ secrets.TF_ARM_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.TF_ARM_TENANT_ID }}"}'

- name: Automatically Deploy Dev to Azure Web App
uses: azure/webapps-deploy@v2
uses: azure/webapps-deploy@v3
with:
app-name: 's185d01-chidrens-social-care-cpd-app-service'
# slot-name: 'Dev'
Expand Down
Loading