Skip to content

Commit 474a661

Browse files
authored
Make sure the repo-local install of dotnet is what copilot uses during iteration (#49504)
1 parent fa094cf commit 474a661

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/copilot-setup-steps.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,10 @@ jobs:
2727
- name: Do an initial build to ensure all dependencies are restored
2828
run: |
2929
./build.sh
30+
- name: Put repo-local dotnet install on PATH
31+
run: |
32+
echo "PATH=$PWD/.dotnet:$PATH" >> $GITHUB_ENV
33+
34+
- name: Check dotnet version
35+
run: |
36+
dotnet --version

0 commit comments

Comments
 (0)