Skip to content

Commit eede34a

Browse files
committed
Add or update the Azure App Service build and deployment workflow config
1 parent b783673 commit eede34a

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
2+
# More GitHub Actions for Azure: https://github.com/Azure/actions
3+
4+
name: Build and deploy Node.js app to Azure Web App - msal-react-kotahusky
5+
6+
on:
7+
push:
8+
branches:
9+
- main
10+
workflow_dispatch:
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Set up Node.js version
20+
uses: actions/setup-node@v3
21+
with:
22+
node-version: '20.x'
23+
24+
- name: npm install, build, and test
25+
run: |
26+
npm install
27+
npm run build --if-present
28+
npm run test --if-present
29+
30+
- name: Zip artifact for deployment
31+
run: zip release.zip ./* -r
32+
33+
- name: Upload artifact for deployment job
34+
uses: actions/upload-artifact@v3
35+
with:
36+
name: node-app
37+
path: release.zip
38+
39+
deploy:
40+
runs-on: ubuntu-latest
41+
needs: build
42+
environment:
43+
name: 'Production'
44+
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
45+
46+
steps:
47+
- name: Download artifact from build job
48+
uses: actions/download-artifact@v3
49+
with:
50+
name: node-app
51+
52+
- name: Unzip artifact for deployment
53+
run: unzip release.zip
54+
55+
- name: 'Deploy to Azure Web App'
56+
id: deploy-to-webapp
57+
uses: azure/webapps-deploy@v2
58+
with:
59+
app-name: 'msal-react-kotahusky'
60+
slot-name: 'Production'
61+
publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_8AD7EEE609AA4B08996ADF2983056C0F }}
62+
package: .

0 commit comments

Comments
 (0)