We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c43187f commit 5b754cbCopy full SHA for 5b754cb
.github/workflows/PublishRelease.yml
@@ -25,7 +25,7 @@ jobs:
25
restore-keys: ${{ runner.os }}-nuget-
26
27
- name: Publish release
28
- run: dotnet run -c Release -- compile publish
+ run: dotnet run -c Release -- publish
29
working-directory: "build"
30
env:
31
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build/Program.cs
@@ -13,10 +13,7 @@
13
14
builder.Services.AddOptions<PublishOptions>().Bind(builder.Configuration.GetSection("Publish"));
15
16
-if (args.Contains("compile"))
17
-{
18
- builder.Services.AddModule<CompileProjectModule>();
19
-}
+builder.Services.AddModule<CompileProjectModule>();
20
21
if (args.Contains("publish"))
22
{
0 commit comments