Skip to content

Commit 839b9ab

Browse files
committed
Finish testing #254
This should now upload NuGet packages to NuGet after a tagged release which follows the tagging format `v*`. Also a minor improvement to the docs build.
1 parent b5f93c1 commit 839b9ab

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/releaseBuild.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
name: Build the documentation website
6161
runs-on: ubuntu-24.04
6262
timeout-minutes: 30
63-
if: ${{ github.event.workflow_run.conclusion == 'success' }}
63+
if: ${{ github.event_name == 'push' || github.event.workflow_run.conclusion == 'success' }}
6464

6565
steps:
6666
- name: Checkout
@@ -95,7 +95,7 @@ jobs:
9595
with:
9696
name: Build results (NuGet)
9797
path: ./packages
98-
# - name: Publish to NuGet
99-
# run: dotnet nuget push ./packages/*.nupkg --source https://api.nuget.org/v3/index.json
98+
- name: Publish to NuGet
99+
run: dotnet nuget push ./packages/*.nupkg --source https://api.nuget.org/v3/index.json
100100

101101

0 commit comments

Comments
 (0)