Skip to content

chore(deps): update dependency astro to v5.16.9 (#47) #35

chore(deps): update dependency astro to v5.16.9 (#47)

chore(deps): update dependency astro to v5.16.9 (#47) #35

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: ["master"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install, build, and upload your site output
uses: withastro/action@v4
with:
package-manager: pnpm
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
runs-on: ubuntu-latest
name: Deploy
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4