Skip to content

Commit 35200a8

Browse files
authored
Refactor: added workflow_dispatch
1 parent cbb6ac2 commit 35200a8

1 file changed

Lines changed: 36 additions & 2 deletions

File tree

.github/workflows/publish-artifacts.yml

Lines changed: 36 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,40 @@
11
name: Publish Artifacts
22

3-
on:
3+
oon:
4+
workflow_dispatch:
5+
inputs:
6+
package_version:
7+
description: "Optional shared package version."
8+
required: false
9+
type: string
10+
core_version:
11+
description: "Optional manual version for ModularityKit.Mutator."
12+
required: false
13+
type: string
14+
governance_version:
15+
description: "Optional manual version for ModularityKit.Mutator.Governance."
16+
required: false
17+
type: string
18+
redis_version:
19+
description: "Optional manual version for ModularityKit.Mutator.Governance.Redis."
20+
required: false
21+
type: string
22+
publish_core:
23+
description: "Pack ModularityKit.Mutator."
24+
required: false
25+
type: boolean
26+
default: true
27+
publish_governance:
28+
description: "Pack ModularityKit.Mutator.Governance."
29+
required: false
30+
type: boolean
31+
default: true
32+
publish_redis:
33+
description: "Pack ModularityKit.Mutator.Governance.Redis."
34+
required: false
35+
type: boolean
36+
default: true
37+
438
workflow_call:
539
outputs:
640
signing_enabled:
@@ -52,7 +86,7 @@ on:
5286
required: false
5387
NUGET_SIGN_SKIP_VERIFICATION:
5488
required: false
55-
89+
5690
permissions:
5791
contents: read
5892

0 commit comments

Comments
 (0)