File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,11 @@ if ($configuration -ieq 'release') {
4343 $publish_nuget = ' true'
4444 }
4545
46+ if ($ref -like ' refs/heads/dev/build_workflow_*' ) {
47+ $sign_binaries = ' true'
48+ $publish_nuget = ' false'
49+ }
50+
4651 # if ($ref -like 'refs/heads/dev/github_actions') {
4752 # $publish_nuget = 'true'
4853 # }
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ name: release
22
33on :
44 push :
5+ branches :
6+ - ' dev/build_workflow_**'
57 tags :
68 - ' v*.*.*'
79
@@ -135,7 +137,7 @@ jobs:
135137 NUGET_TOKEN : ${{ secrets.NUGET_TOKEN }}
136138
137139 - name : Archive NetOffice packages
138- if : success()
140+ if : success() && matrix.configuration == 'Release'
139141 uses : actions/upload-artifact@v5
140142 with :
141143 name : NetOffice_packages_v${{ steps.build.outputs.app_version_full }}
You can’t perform that action at this time.
0 commit comments