File tree Expand file tree Collapse file tree 1 file changed +9
-10
lines changed
Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change 8181
8282 publish :
8383 name : 调用发布阶段
84- needs : [prepare, pack]
85- uses : ./.github/workflows/publish-release.yml
86- with :
87- release_tag : ${{ needs.prepare.outputs.release_tag }}
88- publish_nuget : ${{ startsWith(github.ref, 'refs/tags/') || github.event.inputs.publish_nuget == 'true' }}
89- publish_github : ${{ startsWith(github.ref, 'refs/tags/') || github.event.inputs.publish_github == 'true' }}
90- permissions :
91- contents : write
92- packages : write
93-
9484 if : |
9585 startsWith(github.ref, 'refs/tags/') ||
9686 (
@@ -100,3 +90,12 @@ jobs:
10090 github.event.inputs.publish_github == 'true'
10191 )
10292 )
93+ needs : [prepare, pack]
94+ uses : ./.github/workflows/publish-release.yml
95+ with :
96+ release_tag : ${{ needs.prepare.outputs.release_tag }}
97+ publish_nuget : ${{ startsWith(github.ref, 'refs/tags/') || github.event.inputs.publish_nuget == 'true' }}
98+ publish_github : ${{ startsWith(github.ref, 'refs/tags/') || github.event.inputs.publish_github == 'true' }}
99+ permissions :
100+ contents : write
101+ packages : write
You can’t perform that action at this time.
0 commit comments