Skip to content

Commit 070090f

Browse files
committed
Fixup related to #254
Can't run dotnet if it's not installed! Derp!
1 parent 839b9ab commit 070090f

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/releaseBuild.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,13 @@ jobs:
9090
permissions:
9191
actions: read
9292
steps:
93+
- name: Add .NET global tools location to PATH
94+
run: echo "$HOME/.dotnet/tools" >> "$GITHUB_PATH"
95+
shell: bash
96+
- name: Install .NET
97+
uses: actions/setup-dotnet@v5
98+
with:
99+
dotnet-version: 8.0.x
93100
- name: Get release artifacts
94101
uses: actions/download-artifact@v8
95102
with:

0 commit comments

Comments
 (0)