Skip to content

Bump the npm_and_yarn group with 2 updates #52

Bump the npm_and_yarn group with 2 updates

Bump the npm_and_yarn group with 2 updates #52

name: Build and Deploy Website
on:
push:
branches:
- main
paths-ignore:
- '.github/**'
- '.api/**'
pull_request:
branches:
- main
paths-ignore:
- '.github/**'
- '.api/**'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 'latest'
- name: NPM Install Dependencies
run: npm ci
- name: NPM Build Docusaurus Website
run: npm run build
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: website
path: build
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: Azure Static Web Apps
url: ${{ steps.deploy.outputs.static_web_app_url }}
steps:
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: website
path: build
- name: Deploy to Azure Static Web Apps
id: deploy
uses: azure/static-web-apps-deploy@v1
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_DELIGHTFUL_MOSS_07D95F50F }}
repo_token: ${{ secrets.GITHUB_TOKEN }}
action: 'upload'
app_location: 'build'
api_location: './api'
output_location: 'build'