Skip to content

Commit a9c7555

Browse files
authored
Update msbuild.yml
1 parent 1774771 commit a9c7555

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/msbuild.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ env:
2020
# You can convert this to a build matrix if you need coverage of multiple configuration types.
2121
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
2222
BUILD_CONFIGURATION: Debug
23-
24-
DOWNLOADS_DIR: ${{runner.temp}}/downloads"
25-
DEPENDENCIES_DIR: ${{runner.temp}}/dependencies"
23+
2624
GITHUB_ENV: ${{github.env}}"
2725
GITHUB_PATH: ${{github.path}}"
2826

@@ -46,6 +44,11 @@ jobs:
4644
- name: Restore NuGet packages
4745
working-directory: ${{env.GITHUB_WORKSPACE}}
4846
run: nuget restore ${{env.SOLUTION_FILE_PATH}}
47+
48+
- name: Set up environment variables
49+
run: |
50+
echo "DOWNLOADS_DIR=${{ runner.temp }}/downloads" >> $GITHUB_ENV
51+
echo "DEPENDENCIES_DIR=${{ runner.temp }}/dependencies" >> $GITHUB_ENV
4952
5053
- name: Create directories
5154
run: |

0 commit comments

Comments
 (0)