Skip to content

chore(deps): bump @xmldom/xmldom from 0.8.10 to 0.8.13 (#160) #112

chore(deps): bump @xmldom/xmldom from 0.8.10 to 0.8.13 (#160)

chore(deps): bump @xmldom/xmldom from 0.8.10 to 0.8.13 (#160) #112

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0 # Not needed if lastUpdated is not enabled
- name: Setup
uses: ./.github/actions/setup
with:
enable-cache: false
- name: Setup Pages
uses: actions/configure-pages@45bfe0192ca1faeb007ade9deae92b16b8254a0d # v6.0.0
- name: Install dependencies
working-directory: docs
run: yarn install
- name: Build with Rspress
working-directory: docs
run: |
yarn run build
- name: Upload artifact
uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9 # v5.0.0
with:
path: docs/doc_build
# Deployment job
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@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5.0.0