Skip to content

fix(docs): mention data-webview-ignore #40

fix(docs): mention data-webview-ignore

fix(docs): mention data-webview-ignore #40

Workflow file for this run

on:
push:
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
name: πŸ—οΈ Deploy
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: πŸ“₯ Checkout
uses: actions/checkout@v4
- name: πŸƒ Install Node
uses: actions/setup-node@v4
with:
node-version: 18
registry-url: "https://registry.npmjs.org"
- name: πŸƒ Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- name: πŸ”¨ Build
run: |
pnpm install
pnpm run build
- name: πŸš€ Upload Artifact
uses: actions/upload-pages-artifact@v1
with:
path: build
- name: πŸ“ƒ Setup Pages
uses: actions/configure-pages@v4
- name: πŸ“¦ Deploy
id: deployment
uses: actions/deploy-pages@v2