-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (60 loc) · 2.03 KB
/
deploy-container-to-azure-web-app.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: Build and deploy container app to Azure Web App
on:
push:
branches:
- main
workflow_dispatch:
env:
NODE_VERSION: '20'
DOCKER_IMAGE_NAME: ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.DOCKERHUB_REPO }}
NX_APP_NAME: 'msal-react-demo'
AZURE_APP_NAME: 'msal-react-demo-kotahusky'
AZURE_SLOT_NAME: 'production'
jobs:
build:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build Nx Next.js app
run: npx nx build ${{ env.NX_APP_NAME }}
- name: Show directory structure
run: tree -a -L 3 -d ./apps ./libs
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push container image to registry
uses: docker/build-push-action@v5
with:
push: true
tags: index.docker.io/${{ env.DOCKER_IMAGE_NAME }}:${{ github.sha }}
context: .
build-args: |
NODE_VERSION: ${{ env.NODE_VERSION }}
NEXT_PUBLIC_AZURE_AD_CLIENT_ID: ${{ secrets.NEXT_PUBLIC_AZURE_AD_CLIENT_ID }}
NEXT_PUBLIC_AZURE_AD_TENANT_ID: ${{ secrets.NEXT_PUBLIC_AZURE_AD_TENANT_ID }}
NEXT_PUBLIC_REDIRECT_URI: ${{ secrets.NEXT_PUBLIC_REDIRECT_URI }}
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: 'production'
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
steps:
- name: Deploy to Azure Web App
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
with:
app-name: ${{ env.AZURE_APP_NAME }}
slot-name: ${{ env.AZURE_SLOT_NAME }}
publish-profile: ${{ secrets.AZURE_APPSERVICE_PUBLISHPROFILE }}
images: 'index.docker.io/${{ env.DOCKER_IMAGE_NAME }}:${{ github.sha }}'