Skip to content

Commit 074a985

Browse files
author
Sidney Andrews
committed
Final template
1 parent 2eb8b5f commit 074a985

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

.github/workflows/automation.yml

+22-1
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,25 @@ jobs:
9090
uses: azure/webapps-deploy@v2
9191
with:
9292
app-name: ${{ env.WEB_APP_NAME }}
93-
images: msusdev/webnext:latest
93+
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+
with:
108+
creds: ${{ secrets.AZURE_CREDENTIALS }}
109+
- name: Deploy Web App code
110+
uses: azure/webapps-deploy@v2
111+
with:
112+
app-name: ${{ env.WEB_APP_NAME }}
113+
package: .
114+

0 commit comments

Comments
 (0)