Skip to content

fix(deps): update dependency axios to v1.7.9 (#64) #69

fix(deps): update dependency axios to v1.7.9 (#64)

fix(deps): update dependency axios to v1.7.9 (#64) #69

Workflow file for this run

name: Deploy Main to GitHub Pages
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build-deploy:
name: Build and Deploy Docusaurus to GitHub Pages
runs-on: ubuntu-24.04
timeout-minutes: 10
permissions:
contents: write
pull-requests: write
defaults:
run:
working-directory: ./patterns
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: patterns/package-lock.json
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Build website
env:
BASE_URL: /nr-architecture-patterns-library
run: npm run build
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: patterns/build
branch: gh-pages
clean-exclude: pr-preview/
single-commit: true # Drop unnecessary commit history from gh-pages
force: true # Set to false if we start losing PR deployment previews