We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d6db33 commit f363462Copy full SHA for f363462
.github/workflows/nugetTests.yml
@@ -10,6 +10,10 @@ on:
10
pull_request_target:
11
types: [ labeled ]
12
13
+# Sets dotnet installation dir to avoid permissions issues while installing.
14
+env:
15
+ DOTNET_INSTALL_DIR: "./.dotnet"
16
+
17
# Ensures that only the latest commit is running for each PR at a time.
18
concurrency:
19
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}-${{ github.ref }}
@@ -48,9 +52,6 @@ jobs:
48
52
49
53
- name: Install .NET
50
54
uses: actions/setup-dotnet@v4
51
- if: matrix.os == 'ubuntu'
- env:
- DOTNET_INSTALL_DIR: "path/to/directory"
55
with:
56
dotnet-version: '6.x'
57
0 commit comments