File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 20
20
# You can convert this to a build matrix if you need coverage of multiple configuration types.
21
21
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
22
22
BUILD_CONFIGURATION : Debug
23
-
24
- DOWNLOADS_DIR : ${{runner.temp}}/downloads"
25
- DEPENDENCIES_DIR : ${{runner.temp}}/dependencies"
23
+
26
24
GITHUB_ENV : ${{github.env}}"
27
25
GITHUB_PATH : ${{github.path}}"
28
26
46
44
- name : Restore NuGet packages
47
45
working-directory : ${{env.GITHUB_WORKSPACE}}
48
46
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
49
52
50
53
- name : Create directories
51
54
run : |
You can’t perform that action at this time.
0 commit comments