Compare commits

..

13 Commits

Author SHA1 Message Date
30dc1138e7 更新美编文档 README
All checks were successful
Checking-doc / build-and-deploy(dev) (pull_request) Successful in 3m26s
2025-07-01 05:16:58 +00:00
c322465e0c 更新美编文档第三章
Feature 新增内容
- 移动 3.6 节 3.7 节内容至 InDesign 软件速查内
2025-07-01 05:16:58 +00:00
b603a15033 更新美编文档 5.2 节
🔧Change 一般更改
- 本节更名为“素材管理软件”
- 删除零泉和Billfish软件推荐
- 更新Pixcall和Eagle软件介绍
2025-07-01 05:16:58 +00:00
de65cf5fa6 移除所有文档的分类和标签 2025-07-01 05:16:58 +00:00
672a8946dc 更新美编文档 6.2 节
Feature 新增内容
- 字体丢失的解决方法
2025-07-01 05:16:58 +00:00
5b3674da24 更新美编文档 5.1 节
Feature 新增内容
- 新增使用 InDesign 自动加载字体

🔧Change 一般更改
- 修正行尾句号
- 删除字体丢失的解决方法
2025-07-01 05:16:58 +00:00
524256187c 更新附件存放目录
🔧Change 一般更改
- 更新图片目录,按照不同文件类型分类
2025-07-01 05:16:58 +00:00
2cac2cacf1 更新美编文档 3.4 节
🔧Change 一般更改
- 将本节名称修改为“排版技巧”
- 修正内容表述

Feature 新增内容
- 添加内容速查表

🐛Bug 修复
- 修正行尾句号
2025-07-01 05:16:58 +00:00
423b73abb3 更新美编文档 3.3 节
🔧Change 一般更改
- 统一行尾句号
- 优化InDesign文档类型介绍
2025-07-01 05:16:58 +00:00
8ed86c515f 更新美编文档 3.2 节
🐛Bug 修复

- 快捷键大小写拼写错误
- 为列表项句尾添加句号
2025-07-01 05:16:58 +00:00
751b5a22b8 Merge pull request '移除 Dev CI 流程中的文件更改检查' (#17) from fix/action-ignore into main
Reviewed-on: #17
2025-07-01 05:07:33 +00:00
9e903e6948 为构建和部署作业添加环境标识符
All checks were successful
Checking-doc / build-and-deploy(dev) (pull_request) Successful in 3m15s
deploying-doc / build-and-deploy(production) (pull_request) Successful in 3m10s
2025-07-01 12:12:36 +08:00
0b18d83cd4 移除 Dev CI 流程中的文件更改检查
All checks were successful
Checking-doc / build-and-deploy (pull_request) Successful in 3m6s
2025-07-01 12:10:09 +08:00
2 changed files with 2 additions and 33 deletions

View File

@ -10,7 +10,7 @@ on:
- main
jobs:
build-and-deploy:
build-and-deploy(production):
runs-on: ubuntu-latest
permissions:
contents: read

View File

@ -6,38 +6,7 @@ on:
types: [opened,synchronize]
jobs:
check-file-changes:
runs-on: ubuntu-latest
outputs:
should_run: ${{ steps.filter.outputs.should_run }}
steps:
- name: 🚚 Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 📑 Check changed files
id: filter
run: |
CHANGED_FILES=$(git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }} || git diff --name-only HEAD~1 HEAD)
IMPORTANT_FILE_CHANGED=false
for file in $CHANGED_FILES; do
if [[ $file =~ \.(ts|yaml|json|js|scss)$ ]]; then
IMPORTANT_FILE_CHANGED=true
break
fi
done
if [ "$IMPORTANT_FILE_CHANGED" = true ]; then
echo "should_run=true" >> $GITHUB_OUTPUT
else
echo "should_run=false" >> $GITHUB_OUTPUT
fi
build-and-deploy:
needs: check-file-changes
if: ${{ needs.check-file-changes.outputs.should_run == 'true' || github.event_name == 'workflow_dispatch' }}
build-and-deploy(dev):
runs-on: ubuntu-latest
permissions:
contents: read