Skip to content

Commit 0e3bd60

Browse files
Merge branch 'v12.0' into v13.0
2 parents fb6ba0b + d42f60b commit 0e3bd60

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/actions/setup-dotnet/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ runs:
2929
3030
- name: Restore dependencies
3131
shell: bash
32-
run: dotnet restore
32+
run: dotnet restore EssentialCSharp.sln
3333

3434
- name: Build
3535
if: ${{ inputs.build == 'true' }}
3636
shell: bash
37-
run: dotnet build --no-restore
37+
run: dotnet build EssentialCSharp.sln --no-restore

.github/workflows/LocalesTest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ jobs:
5151
echo "Printing date"
5252
date
5353
echo Restore dependencies
54-
dotnet restore
54+
dotnet restore EssentialCSharp.sln
5555
echo Build
56-
dotnet build --no-restore
56+
dotnet build EssentialCSharp.sln --no-restore
5757
echo Test
5858
dotnet test --no-build --no-restore --verbosity normal

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
contents: write
1818

1919
steps:
20-
- uses: fastify/[email protected].1
20+
- uses: fastify/[email protected].2
2121
with:
2222
use-github-auto-merge: true
2323

0 commit comments

Comments
 (0)