Skip to content

Commit 4753ba6

Browse files
committed
Enable workflow troubleshooting
1 parent 038d619 commit 4753ba6

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/Get-BuildInfo.ps1

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@ if ($configuration -ieq 'release') {
4343
$publish_nuget = 'true'
4444
}
4545

46+
if ($event_name -like 'workflow_dispatch') {
47+
$sign_binaries = 'true'
48+
$publish_nuget = 'false'
49+
}
50+
4651
# if ($ref -like 'refs/heads/dev/github_actions') {
4752
# $publish_nuget = 'true'
4853
# }

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
name: release
22

33
on:
4+
workflow_dispatch:
45
push:
6+
branches:
7+
- 'dev/build_workflow_**'
58
tags:
69
- 'v*.*.*'
710

0 commit comments

Comments
 (0)