Skip to content

修复文章页真问题:暗色模式表格边框不可见(加亮色边框);标题容器与正文左边缘对齐(去掉header居中) #99

修复文章页真问题:暗色模式表格边框不可见(加亮色边框);标题容器与正文左边缘对齐(去掉header居中)

修复文章页真问题:暗色模式表格边框不可见(加亮色边框);标题容器与正文左边缘对齐(去掉header居中) #99

Workflow file for this run

name: Deploy Hexo to GitHub Pages (Backup)
on:
push:
branches:
- master
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout master
uses: actions/checkout@v4
with:
ref: master
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Build
run: npx hexo generate
- name: Deploy to pages branch
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
publish_branch: pages