Skip to content

feat: refactor cache, cleanup old gha #14

feat: refactor cache, cleanup old gha

feat: refactor cache, cleanup old gha #14

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
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build Nx Next.js app
run: npx nx build msal-react-demo
- 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/${{ 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 }}'