We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 148e2a9 commit 39e89d4Copy full SHA for 39e89d4
.github/workflows/pre-commit-format.yml
@@ -20,8 +20,6 @@ jobs:
20
env:
21
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
22
DOTNET_CLI_TELEMETRY_OPTOUT: 1
23
- TMPDIR: ${{ runner.temp }}
24
- DOTNET_CLI_HOME: ${{ runner.temp }}/dotnet-home
25
26
steps:
27
- uses: actions/checkout@v4
@@ -36,6 +34,11 @@ jobs:
36
34
with:
37
35
python-version: "3.10"
38
+ - name: Configure temp directories
+ run: |
39
+ echo "TMPDIR=${{ runner.temp }}/dotnet-tmp" >> "$GITHUB_ENV"
40
+ echo "DOTNET_CLI_HOME=${{ runner.temp }}/dotnet-home" >> "$GITHUB_ENV"
41
+
42
- name: Clean dotnet temporary folder
43
run: |
44
sudo rm -rf /tmp/.dotnet
0 commit comments