We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbebeff commit def4a53Copy full SHA for def4a53
.github/workflows/nuget-publish.yml
@@ -71,15 +71,14 @@ jobs:
71
# 3. 仅在 tag 或手动发布时生成 demo 资产
72
build-demos:
73
name: 调用 Demo 构建阶段
74
+ if: startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch'
75
needs: prepare
76
uses: ./.github/workflows/build-demos.yml
77
with:
78
package_version: ${{ needs.prepare.outputs.package_version }}
79
permissions:
80
contents: read
81
- if: startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch'
82
-
83
publish:
84
name: 调用发布阶段
85
needs: [prepare, pack]
0 commit comments