mirror of
https://github.com/jaywcjlove/copybook-generator.git
synced 2026-06-03 21:01:27 +08:00
97 lines
4.1 KiB
YAML
97 lines
4.1 KiB
YAML
name: CI/CD
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build-deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
registry-url: 'https://registry.npmjs.org'
|
|
|
|
- name: Create Tag
|
|
id: create_tag
|
|
uses: jaywcjlove/create-tag-action@main
|
|
with:
|
|
test: '[R|r]elease[d]\s+[v|V]\d(\.\d+){0,2}'
|
|
|
|
- name: Create Released Tag
|
|
uses: jaywcjlove/create-tag-action@main
|
|
with:
|
|
version: ${{ steps.create_tag.outputs.version }}
|
|
release: true
|
|
body: |
|
|
<a target="_blank" href="https://jaywcjlove.github.io/maslink/?id=6503953628" title="Copybook Generator AppStore">
|
|
<img alt="Copybook Generator AppStore" src="https://jaywcjlove.github.io/sb/download/macos.svg" height="51">
|
|
</a>
|
|
|
|
- name: Create idoc config.
|
|
run: |
|
|
cat > idoc.yml << EOF
|
|
site: "宝宝字帖 {{version:${{ steps.create_tag.outputs.version }}}}"
|
|
description: 一款功能强大的字帖生成工具,专为满足不同用户的书写练习需求而设计,并且会根据我自己宝宝的成长持续添加内容
|
|
keywords: 宝宝字帖,汉字字帖,字帖生成,汉字练习,英文字母练习,笔顺描写,书写练习,自定义字帖,教育工具,笔控练习,儿童书法
|
|
favicon: assets/logo.png
|
|
logo: ./assets/logo.png
|
|
openSource: https://github.com/jaywcjlove/copybook-generator
|
|
homepage: https://wangchujiang.com/copybook-generator/
|
|
tocs: false
|
|
element:
|
|
wrapper: style=max-width:720px;
|
|
meta:
|
|
- <meta name="author" content="Kenny Wong">
|
|
- <meta property="og:site_name" content="<%= site %>">
|
|
- <meta property="og:url" content="<%=homepage%><%=RESOLVE_PATH%>">
|
|
- <meta property="og:image" content="<%=homepage%>assets/logo.png">
|
|
- <meta property="og:type" content="application">
|
|
- <meta property="og:title" content="<%= site %>">
|
|
- <meta property="og:description" content="<%= description%>">
|
|
- <meta property="twitter:image:src" content="<%=homepage%>assets/screenshots-1.png">
|
|
- <meta property="twitter:site" content="@jaywcjlove">
|
|
- <meta property="twitter:creator" content="jaywcjlove">
|
|
- <meta property="twitter:card" content="summary_large_image">
|
|
- <meta property="twitter:title" content="<%= site %> - <%= description%>">
|
|
- <meta property="twitter:description" content="<%= description%>">
|
|
- <meta name="apple-itunes-app" content="app-id=6476452351">
|
|
menus:
|
|
Home: index.html
|
|
Apps:
|
|
url: https://wangchujiang.com/#/app
|
|
target: __blank
|
|
About:
|
|
url: https://wangchujiang.com/#/about
|
|
target: __blank
|
|
sideEffectFiles:
|
|
- README.md
|
|
- README.zh.md
|
|
- CHANGELOG.md
|
|
- CHANGELOG.zh.md
|
|
- feedback.md
|
|
- feedback.zh.md
|
|
- terms-of-service.md
|
|
- terms-of-service.zh.md
|
|
- privacy-policy.md
|
|
- privacy-policy.zh.md
|
|
footer: |
|
|
<a href="./terms-of-service.html" target="_blank">Terms of Service</a> •
|
|
<a href="./privacy-policy.html" target="_blank">Privacy Policy</a> •
|
|
<a href="https://wangchujiang.com/#/projects" target="_blank">Projects</a> •
|
|
<a href="https://wangchujiang.com/#/sponsor" target="_blank">Sponsor</a> •
|
|
<a href="https://wangchujiang.com/#/app" target="_blank">More Apps</a><br /><br />
|
|
Generated by <a href="https://github.com/jaywcjlove/idoc" target="_blank">idoc</a> v{{idocVersion}}
|
|
EOF
|
|
|
|
- run: npm install idoc@1 -g
|
|
- run: idoc
|
|
|
|
- name: Deploy
|
|
uses: peaceiris/actions-gh-pages@v4
|
|
with:
|
|
commit_message: ${{ github.event.head_commit.message }}
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_dir: ./dist |