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.
2 parents ba61010 + 41bec5e commit 19dec0cCopy full SHA for 19dec0c
.github/workflows/dotnet.yml
@@ -75,6 +75,10 @@ jobs:
75
- name: Build
76
run: dotnet build --no-restore
77
working-directory: Our.Umbraco.TagHelpers
78
+
79
+ - name: Test
80
+ run: dotnet test
81
+ working-directory: Our.Umbraco.TagHelpers.Tests
82
83
- name: Dotnet Pack
84
run: dotnet pack --output ../build.out/
@@ -87,4 +91,5 @@ jobs:
87
91
path: ./build.out/
88
92
89
93
- name: Push to GitHub Nuget Repo
94
+ if: ${{ github.event_name != 'pull_request' }}
90
95
run: dotnet nuget push ./build.out/*.nupkg --skip-duplicate --source https://nuget.pkg.github.com/umbraco-community/index.json --api-key ${{ github.token }}
0 commit comments