1
0

项目: 更新 workflow
Some checks failed
Build and Deploy Quartz Site / build-and-deploy (push) Failing after 2m5s

This commit is contained in:
周中平 2024-09-06 11:23:42 +08:00
parent 05e4a3eb1e
commit 592a1c5a0a
Signed by: zhouzhongping
GPG Key ID: 6666822800008000
2 changed files with 36 additions and 51 deletions

51
.github/build.yml vendored
View File

@ -1,51 +0,0 @@
name: Build and Deploy Quartz Site
on:
push:
branches: [ main ]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Clone repository (quartz)
run: git clone https://github.com/7Wate/wiki-quartz.git /wiki/quartz
- name: Clone repository (wiki)
run: git clone https://github.com/7Wate/wiki.git /wiki/quartz/content
- name: Set up Node.js 20
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install Quartz dependencies and Build site
run: |
# 设置 README 为首页,并且添加标题
mv /wiki/quartz/content/README.md /wiki/quartz/content/index.md
sed -i '1i ---\ntitle: X·Eden\n---' /wiki/quartz/content/index.md
# 进入 Quartz 项目目录,安装依赖并构建网站
cd /wiki/quartz && npm ci && npx quartz build
# 创建 public 目录并复制构建结果到此目录
mkdir -p /wiki/public/ && cp -r public/* /wiki/public/
- name: Deploy to HTML branch of current repository (A仓库)
run: |
# 设置 Git 用户名和邮箱
git config --global user.name "Github Actions"
git config --global user.email "zhouzhongping@7wate.com"
# 在 public 目录下初始化 git 仓库
cd /wiki/public/ && git init && git add .
# 获取当天日期作为提交信息
DATE=`date '+%Y-%m-%d'`
git commit -m "Deploy HTML files - $DATE"
# 添加远程仓库地址
git remote add gitea https://${{ secrets.GITEA_PUSH_PULL_TOKEN }}@git.7wate.com/zhouzhongping/wiki.git
# 强制推送到远程的 html 分支
git checkout -b quartz && git push gitea quartz --force

36
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,36 @@
name: Build and Deploy Quartz Site
on:
push:
branches: [ main ]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Clone repositories
run: |
git clone https://github.com/7Wate/wiki-quartz.git $HOME/wiki/quartz && rm -rf $HOME/wiki/quartz/content
git clone https://github.com/7Wate/wiki.git $HOME/wiki/quartz/content
- name: Set up Node.js 20
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install dependencies and build site
run: |
mv $HOME/wiki/quartz/content/README.md $HOME/wiki/quartz/content/index.md
sed -i '1d' $HOME/wiki/quartz/content/index.md && sed -i '1i ---\ntitle: 数字花园\n---' $HOME/wiki/quartz/content/index.md
cd $HOME/wiki/quartz && npm ci && npx quartz build
mkdir -p $HOME/wiki/public/ && cp -r public/* $HOME/wiki/public/
- name: Deploy to Gitea
run: |
git config --global user.name "Github Actions"
git config --global user.email "zhouzhongping@7wate.com"
cd $HOME/wiki/public/ && git init && git add .
DATE=`date '+%Y-%m-%d'`
git commit -m "Deploy HTML files - $DATE"
git remote add gitea https://${{ secrets.GITEA_PUSH_PULL_TOKEN }}@git.7wate.com/zhouzhongping/wiki.git
git checkout -b quartz && git push gitea quartz --force