Skip to content

Commit f522201

Browse files
committed
more poking
1 parent 854780b commit f522201

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,13 @@ jobs:
3333
8.0.x
3434
9.0.x
3535
36-
- name: Restore dotnet tools
36+
- name: Restore .NET tools
3737
run: dotnet tool restore
38+
working-directory: .
3839

3940
- name: Restore dependencies
40-
run: dotnet restore ./src
41+
run: dotnet restore
42+
working-directory: ./src
4143

4244
- name: Build
4345
run: dotnet build ./src --no-restore -p:VersionFromCI="0.0.0-cibuild"

.github/workflows/publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,13 @@ jobs:
3232
id: extract_version
3333
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
3434

35-
- name: Restore dotnet tools
35+
- name: Restore .NET tools
3636
run: dotnet tool restore
37+
working-directory: .
3738

3839
- name: Restore dependencies
39-
run: dotnet restore ./src
40+
run: dotnet restore
41+
working-directory: ./src
4042

4143
- name: Build
4244
run: dotnet build ./src --no-restore --configuration Release /p:VersionFromCI=${{ env.VERSION }}

0 commit comments

Comments
 (0)