Skip to content

fix: .next must be included #12

fix: .next must be included

fix: .next must be included #12

name: Build and deploy container app to Azure Web App - msal-react-demo-kotahusky
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '20'
- uses: actions/cache@v3
id: npm-cache
with:
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm ci
if: steps.npm-cache.outputs.cache-hit != 'true'
- name: Build Nx Next.js app
run: npx nx build msal-react-demo
- name: Show directory structure
run: |
tree -L 3 -d -I 'node_modules|dist|.git'
ls ./apps/msal-react-demo/.next
- 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/${{ secrets.DOCKERHUB_USERNAME }}/kota-private:${{ github.sha }}
file: ./Dockerfile
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: 'msal-react-demo-kotahusky'
slot-name: 'production'
publish-profile: ${{ secrets.AzureAppService_PublishProfile_7dcf9c5728264f65ad25c7277f970fbf }}
images: 'index.docker.io/${{ secrets.DOCKERHUB_USERNAME }}/kota-private:${{ github.sha }}'