Skip to content

no header file anymore #57

no header file anymore

no header file anymore #57

Workflow file for this run

name: deploy-pages
on:
push:
branches: "main"
paths-ignore:
- README.md
- CONTRIBUTING.md
- .devcontainer/**
- LICENSE
- .gitignore
- .github/**
- "!.github/workflows/deploy-pages.yml"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
deploy-pages:
environment:
name: github-pages
url: ${{ steps.deploy-pages.outputs.page_url }}
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "20"
cache: npm
- run: npm ci
- uses: jcbhmr/configure-pages@jcbhmr-patch-1
- run: npm run build
env:
GA_TRACKING_ID: ${{ vars.GA_TRACKING_ID }}
- uses: actions/upload-pages-artifact@v2
with:
path: .vitepress/dist
- id: deploy-pages
uses: actions/deploy-pages@v2