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 1fb7e80 commit b1979d6Copy full SHA for b1979d6
.github/workflows/dotnet.yml
.github/workflows/publish.yml
@@ -37,9 +37,13 @@ jobs:
37
if: steps.versionize.outcome != 'success'
38
run: echo "Skipping publishing. No release required."
39
40
+ - name: Build
41
+ if: steps.versionize.outcome == 'success'
42
+ run: dotnet build ./ApiStub.FSharp --configuration Release
43
+
44
- name: Pack
45
if: steps.versionize.outcome == 'success'
- run: dotnet pack ./ApiStub.FSharp --output ./nupkgs --include-source --configuration Release --include-symbols
46
+ run: dotnet pack ./ApiStub.FSharp --no-build --output ./nupkgs --include-source --configuration Release --include-symbols
47
48
- name: Push Package
49
0 commit comments