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 f1f5eb8 commit 87cfe0eCopy full SHA for 87cfe0e
.github/main.workflow
@@ -7,3 +7,20 @@ action "twitchax/actions/dotnet/cli@master" {
7
uses = "twitchax/actions/dotnet/cli@master"
8
args = "test"
9
}
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