Skip to content

Add dark theme logo #35

Add dark theme logo

Add dark theme logo #35

Workflow file for this run

name: 'Build docs'
on:
push:
branches: [ 'main' ]
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install requirements
run: npm install
- name: Build docs
run: npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: './docs/.vuepress/dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1