Skip to content

Commit 8152a91

Browse files
committed
feat: .NET 8 release
BREAKING CHANGE
1 parent 45a92e0 commit 8152a91

File tree

8 files changed

+10
-14
lines changed

8 files changed

+10
-14
lines changed

.github/workflows/publish-package.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,28 +19,24 @@ jobs:
1919
- name: Checkout repository
2020
uses: actions/checkout@v3
2121

22-
- name: Setup .NET 7
22+
- name: Setup .NET 8
2323
uses: actions/setup-dotnet@v3
2424
with:
25-
dotnet-version: 7.0.x
25+
dotnet-version: 8.0.x
2626

2727
- name: Restore dependencies
2828
run: dotnet restore
2929

3030
- name: Build
31-
run: dotnet build -c Release --no-restore
32-
33-
- name: Test
34-
run: dotnet test
31+
run: dotnet build --no-restore
3532

3633
- name: Semantic Release
3734
id: semantic
38-
uses: cycjimmy/semantic-release-action@v2
35+
uses: cycjimmy/semantic-release-action@v3
3936
with:
40-
semantic_version: 18.0.1
37+
semantic_version: 19.0.5
4138
extra_plugins: |
4239
@semantic-release/changelog
43-
@semantic-release/github
4440
@semantic-release/git
4541
env:
4642
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -49,4 +45,4 @@ jobs:
4945
run: dotnet pack -c Release -o out -p:PackageVersion=${{ steps.semantic.outputs.new_release_version }} -p:RepositoryUrl=${{env.CURRENT_REPO_URL}}
5046

5147
- name: Publish the package to nuget.org
52-
run: dotnet nuget push ./out/*.nupkg --skip-duplicate --no-symbols true -k ${{ secrets.NUGET_AUTH_TOKEN}} -s https://api.nuget.org/v3/index.json
48+
run: dotnet nuget push ./out/*.nupkg -n -d -k ${{ secrets.NUGET_AUTH_TOKEN}} -s https://api.nuget.org/v3/index.json

.github/workflows/pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
- name: Checkout repository
1616
uses: actions/checkout@v3
1717

18-
- name: Setup .NET 7
18+
- name: Setup .NET 8
1919
uses: actions/setup-dotnet@v3
2020
with:
21-
dotnet-version: 7.0.x
22-
21+
dotnet-version: 8.0.x
22+
2323
- name: Restore dependencies
2424
run: dotnet restore
2525

Binary file not shown.
Binary file not shown.
Binary file not shown.

src/NetDevPack.Security.PasswordHasher.Identity.Demo/NetDevPack.Security.PasswordHasher.Identity.Demo.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<IsPackable>false</IsPackable>
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)