Skip to content

Commit 0bb07d3

Browse files
committed
Merge branch 'master' of github.com:twitchax/AspNetCore.Proxy
2 parents 1abc10f + 87cfe0e commit 0bb07d3

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/main.workflow

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,20 @@ action "twitchax/actions/dotnet/cli@master" {
77
uses = "twitchax/actions/dotnet/cli@master"
88
args = "test"
99
}
10+
11+
workflow "Release" {
12+
on = "release"
13+
resolves = ["nuget-push"]
14+
}
15+
16+
action "pack" {
17+
uses = "twitchax/actions/dotnet/cli@master"
18+
args = "pack -c Release"
19+
}
20+
21+
action "nuget-push" {
22+
uses = "twitchax/actions/dotnet/nuget-push@master"
23+
needs = ["pack"]
24+
args = "**/AspNetCore.Proxy.*.nupkg"
25+
secrets = ["NUGET_KEY"]
26+
}

0 commit comments

Comments
 (0)