File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ permissions:
24
24
env :
25
25
ACR_NAME : ' f3jiczwhl7laimpnpreg.azurecr.io'
26
26
CONTAINER_NAME : ' razorpagestestsample'
27
+ WEB_APP_NAME : ' f3jiczwhl7lai-dev'
27
28
TAG_NAME : ${{ github.sha }}
28
29
29
30
jobs :
64
65
context : ./src/Application/src/RazorPagesTestSample
65
66
push : true
66
67
tags : ${{ env.ACR_NAME }}/${{ env.CONTAINER_NAME }}:${{ env.TAG_NAME }}
67
- file : ./src/Application/src/RazorPagesTestSample/Dockerfile
68
+ file : ./src/Application/src/RazorPagesTestSample/Dockerfile
69
+
70
+ deploy :
71
+ needs : build
72
+ runs-on : ubuntu-latest
73
+
74
+ steps :
75
+ - uses : actions/checkout@v4
76
+
77
+ - name : Deploys to
78
+ uses : Azure/webapps-deploy@v2
79
+ with :
80
+ app-name : ${{ env.WEB_APP_NAME }}
81
+ images : ' ${{ env.ACR_NAME }}/${{ env.CONTAINER_NAME }}:${{ env.TAG_NAME }}'
You can’t perform that action at this time.
0 commit comments