Skip to content

chore(deps): bump the monitoring group in /monitoring with 5 updates … #465

chore(deps): bump the monitoring group in /monitoring with 5 updates …

chore(deps): bump the monitoring group in /monitoring with 5 updates … #465

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
permissions:
contents: write
pages: write
id-token: write
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: yarn
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build
run: yarn build
- name: Deploy
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
yarn github-pages-deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}