修改Android正式版发布时间;新增插件市场教程;新增插件下载-插件市场;更新 通过附件添加条目中增加 插件及translator更新 的说明。 #152
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 部署 (预览环境) | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: 检查文档格式 | |
uses: ./.github/workflows/lint.yml | |
permissions: | |
contents: write | |
pull-requests: write | |
with: | |
fix: false | |
build: | |
name: 构建文档 | |
uses: ./.github/workflows/build.yml | |
upload: | |
name: 上传运行信息 | |
runs-on: ubuntu-latest | |
if: github.repository == 'zotero-chinese/wiki' && github.event_name == 'pull_request' | |
steps: | |
- name: 保存 PR 编号 | |
run: | | |
echo "${{ github.event.number }}" > pr_num | |
- name: 上传 PR 编号 | |
uses: actions/upload-artifact@v4 | |
with: | |
name: pr-num | |
path: ./pr_num |