Skip to content

Bump astro from 5.15.6 to 5.15.9 #7

Bump astro from 5.15.6 to 5.15.9

Bump astro from 5.15.6 to 5.15.9 #7

Workflow file for this run

name: Deploy to Github Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
pages: write
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm install
- name: Build website
run: npm run build
- name: Setup pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./dist
- name: Deploy
id: deployment
uses: actions/deploy-pages@v4