We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a469d42 commit 0e07984Copy full SHA for 0e07984
.github/actions/update-lockfiles/action.yml
@@ -8,7 +8,7 @@ runs:
8
shell: bash
9
run: |
10
echo "work space: $GITHUB_WORKSPACE"
11
- dotnet restore --force-evaluate
+ dotnet restore --force-evaluate --packages "$GITHUB_WORKSPACE/../.nuget"
12
13
- name: Commit and Push Changes
14
.github/workflows/build.yml
@@ -37,7 +37,10 @@ jobs:
37
uses: ./.github/actions/update-lockfiles
38
39
- name: Restore dependencies
40
- run: dotnet restore --locked-mode
+ run: |
41
+ echo "work space: $GITHUB_WORKSPACE"
42
+ echo "{{ github.workspace }}"
43
+ dotnet restore --locked-mode --packages "$GITHUB_WORKSPACE/../.nuget"
44
45
- name: Build
46
run: dotnet build --no-restore
0 commit comments