Skip to content

Commit c66856c

Browse files
authored
Merge pull request #19 from TraGicCode/GH-17-automate-nuget-dotnet-tool-release
(GH-17) Automate dotnet-tool release
2 parents 78ebce2 + 102b252 commit c66856c

2 files changed

Lines changed: 11 additions & 2 deletions

File tree

.github/workflows/docker_build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
name: Build Docker Image
22

33
on:
4-
workflow_dispatch:
4+
workflow_call:
5+
inputs:
6+
version:
7+
required: true
8+
type: string
59

610
jobs:
711
build:

.github/workflows/dotnet_tool_build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
name: Build and Publish .NET Tool
22

33
on:
4-
workflow_dispatch:
4+
workflow_call:
5+
inputs:
6+
version:
7+
required: true
8+
type: string
9+
510

611
jobs:
712
build-and-pack:

0 commit comments

Comments
 (0)