We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f480ca commit 757ea6fCopy full SHA for 757ea6f
.github/workflows/nuget-publish.yml
@@ -82,7 +82,7 @@ jobs:
82
83
publish:
84
name: 调用发布阶段
85
- needs: [prepare, pack, build-demos]
+ needs: [prepare, pack]
86
uses: ./.github/workflows/publish-release.yml
87
with:
88
release_tag: ${{ needs.prepare.outputs.release_tag }}
@@ -91,6 +91,7 @@ jobs:
91
permissions:
92
contents: write
93
packages: write
94
+
95
if: |
96
startsWith(github.ref, 'refs/tags/') ||
97
(
.github/workflows/publish-release.yml
@@ -2,7 +2,6 @@ name:
2
3
'on':
4
workflow_call:
5
- # inputs: 接收发布标签与发布目标开关,执行 Release / NuGet / GitHub Packages 发布。
6
inputs:
7
release_tag:
8
description: "发布标签:通常为 v9.5.0.5 形式"
@@ -16,7 +15,6 @@ name:
16
15
description: "是否发布到 GitHub Packages"
17
required: true
18
type: boolean
19
- # outputs: 当前工作流只执行发布动作,不向调用方返回结构化 outputs。
20
21
jobs:
22
0 commit comments