We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1a15409 + 98fc86a commit 7f1878fCopy full SHA for 7f1878f
.github/workflows/deploy.yml
@@ -61,6 +61,11 @@ jobs:
61
context: .
62
file: appcontainer/Dockerfile
63
push: true
64
- tags: |
65
- ghcr.io/${{ github.repository }}:${{ github.ref_name }}
66
- ghcr.io/${{ github.repository }}:${{ github.sha }}
+ tags: ghcr.io/${{ github.repository }}:${{ github.sha }}
+
+ - name: Deploy to Azure Web App
67
+ uses: azure/webapps-deploy@v2
68
+ with:
69
+ app-name: ${{ vars.AZURE_WEBAPP_NAME }}
70
+ images: ghcr.io/${{ github.repository }}:${{ github.sha }}
71
+ publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}
0 commit comments