Skip to content

Commit 743022c

Browse files
author
github-actions
committedSep 20, 2024·
Merge branch 'release/3.0.0'
2 parents 2801f3e + 5a42711 commit 743022c

File tree

388 files changed

+2955
-46078
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

388 files changed

+2955
-46078
lines changed
 

‎.github/workflows/build.yml

+6-11
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,14 @@ jobs:
1818
runs-on: windows-latest
1919

2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- name: Check path
2323
run: echo ${{ github.workspace }}
2424
- name: Setup .NET
25-
uses: actions/setup-dotnet@v1
25+
uses: actions/setup-dotnet@v4
2626
with:
27-
dotnet-version: 3.1.x
28-
- name: Setup MSBuild
29-
uses: microsoft/setup-msbuild@v1.1
30-
with:
31-
# The preferred processor architecture of MSBuild. Can be either "x86" or "x64". "x64" is only available from Visual Studio version 17.0 and later.
32-
msbuild-architecture: x64
33-
- name: Build and restore
34-
run: msbuild -restore -p:Configuration=Test ${{ github.workspace }}\src\PiWeb.Volume.sln
27+
dotnet-version: 8.0.x
28+
- name: Build
29+
run: dotnet build ${{ github.workspace }}\src\PiWeb.Volume.sln
3530
- name: Test
36-
run: dotnet test --no-build --verbosity normal ${{ github.workspace }}\bin\Test\PiWeb.Volume.Tests.dll
31+
run: dotnet test --verbosity normal ${{ github.workspace }}\src\PiWeb.Volume.sln

‎.github/workflows/create-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v2
2222
with:
2323
fetch-depth: 0
24-
token: ${{ secrets.ADMIN_TOKEN }}
24+
token: ${{ secrets.PUSH_TO_GITHUB_REPO_PAT }}
2525

2626
- name: setup git config
2727
run: |

0 commit comments

Comments
 (0)
Please sign in to comment.