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.
1 parent 2eb8b5f commit 074a985Copy full SHA for 074a985
.github/workflows/automation.yml
@@ -90,4 +90,25 @@ jobs:
90
uses: azure/webapps-deploy@v2
91
with:
92
app-name: ${{ env.WEB_APP_NAME }}
93
- images: msusdev/webnext:latest
+ images: msusdev/webnext:latest
94
+ deploy-azure-manual:
95
+ name: Deploy code directly to Azure
96
+ runs-on: ubuntu-latest
97
+ needs: build-project
98
+ env:
99
+ WEB_APP_NAME: sidneywebinarcode
100
+ steps:
101
+ - name: Download site content
102
+ uses: actions/download-artifact@v2
103
+ with:
104
+ name: site-build
105
+ - name: Login to Azure
106
+ uses: azure/login@v1
107
108
+ creds: ${{ secrets.AZURE_CREDENTIALS }}
109
+ - name: Deploy Web App code
110
+ uses: azure/webapps-deploy@v2
111
112
+ app-name: ${{ env.WEB_APP_NAME }}
113
+ package: .
114
+
0 commit comments