Skip to content

Commit 110a69c

Browse files
Ensure tooling can be found to install from config within checked out repo directory
Add .NET to path in new split job
1 parent b22312e commit 110a69c

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,14 @@ jobs:
126126
working-directory: ./
127127
run: mkdir ./components
128128

129+
- name: Add msbuild to PATH
130+
uses: microsoft/setup-msbuild@v1.3.1
131+
132+
# Restore Tools from Manifest list in the Repository
133+
- name: Restore dotnet tools
134+
working-directory: ./tooling
135+
run: dotnet tool restore
136+
129137
# Create a new experiment from the template and test using that
130138
- name: Install template
131139
working-directory: ${{ env.PROJECT_DIRECTORY }}
@@ -205,6 +213,7 @@ jobs:
205213

206214
# Restore Tools from Manifest list in the Repository
207215
- name: Restore dotnet tools
216+
working-directory: ./tooling
208217
run: dotnet tool restore
209218

210219
- name: Generate solution

0 commit comments

Comments
 (0)