Skip to content

docs(esk): remove incorrect note #8

docs(esk): remove incorrect note

docs(esk): remove incorrect note #8

Workflow file for this run

name: Deploy Astro to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup pnpm
uses: pnpm/action-setup@v4.4.0
with:
version: 10
- name: Setup Node
uses: actions/setup-node@v6.3.0
with:
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build with Astro
uses: withastro/action@v5.2.0
with:
package-manager: pnpm
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4.0.5