We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 038d619 commit 4753ba6Copy full SHA for 4753ba6
.github/Get-BuildInfo.ps1
@@ -43,6 +43,11 @@ if ($configuration -ieq 'release') {
43
$publish_nuget = 'true'
44
}
45
46
+ if ($event_name -like 'workflow_dispatch') {
47
+ $sign_binaries = 'true'
48
+ $publish_nuget = 'false'
49
+ }
50
+
51
# if ($ref -like 'refs/heads/dev/github_actions') {
52
# $publish_nuget = 'true'
53
# }
.github/workflows/release.yml
@@ -1,7 +1,10 @@
1
name: release
2
3
on:
4
+ workflow_dispatch:
5
push:
6
+ branches:
7
+ - 'dev/build_workflow_**'
8
tags:
9
- 'v*.*.*'
10
0 commit comments