We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a02300d commit f07a786Copy full SHA for f07a786
.github/workflows/deploy_docs.yaml
@@ -1,10 +1,10 @@
1
name: Deploy Docs
2
3
on:
4
- release:
5
- types: [published]
6
- branches: [master, main]
7
- workflow_dispatch: # 保留手动触发选项
+ push:
+ tags:
+ - '[0-9]+.[0-9]+.[0-9]+' # 匹配类似 1.0.0, 2.1.3 等格式的标签
+ workflow_dispatch:
8
9
permissions:
10
contents: write # 用于部署到 GitHub Pages
.github/workflows/release_build.yaml
@@ -1,9 +1,9 @@
name: release-build
workflow_dispatch:
inputs:
version:
0 commit comments