Skip to content

Commit 0e07984

Browse files
committed
echo github.workspace
1 parent a469d42 commit 0e07984

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/actions/update-lockfiles/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ runs:
88
shell: bash
99
run: |
1010
echo "work space: $GITHUB_WORKSPACE"
11-
dotnet restore --force-evaluate
11+
dotnet restore --force-evaluate --packages "$GITHUB_WORKSPACE/../.nuget"
1212
1313
- name: Commit and Push Changes
1414
shell: bash

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@ jobs:
3737
uses: ./.github/actions/update-lockfiles
3838

3939
- name: Restore dependencies
40-
run: dotnet restore --locked-mode
40+
run: |
41+
echo "work space: $GITHUB_WORKSPACE"
42+
echo "{{ github.workspace }}"
43+
dotnet restore --locked-mode --packages "$GITHUB_WORKSPACE/../.nuget"
4144
4245
- name: Build
4346
run: dotnet build --no-restore

0 commit comments

Comments
 (0)