mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
(MINOR) Updated workflows and bumped version for release
This commit is contained in:
parent
a4bd797912
commit
ced13e9ec2
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
@ -14,11 +14,11 @@ jobs:
|
|||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4.1.1
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Setup .NET
|
- name: Setup .NET
|
||||||
uses: actions/setup-dotnet@v3
|
uses: actions/setup-dotnet@v4
|
||||||
with:
|
with:
|
||||||
dotnet-version: |
|
dotnet-version: |
|
||||||
8.0.x
|
8.0.x
|
||||||
@ -26,7 +26,7 @@ jobs:
|
|||||||
6.0.x
|
6.0.x
|
||||||
- name: Git Semantic Version
|
- name: Git Semantic Version
|
||||||
id: versioning
|
id: versioning
|
||||||
uses: PaulHatch/semantic-version@v4.0.3
|
uses: PaulHatch/semantic-version@v5.4.0
|
||||||
with:
|
with:
|
||||||
short_tags: false
|
short_tags: false
|
||||||
format: "${major}.${minor}.${patch}-prerelease.${increment}"
|
format: "${major}.${minor}.${patch}-prerelease.${increment}"
|
||||||
@ -37,25 +37,25 @@ jobs:
|
|||||||
- name: Test
|
- name: Test
|
||||||
run: dotnet test --no-build --verbosity normal --configuration Release
|
run: dotnet test --no-build --verbosity normal --configuration Release
|
||||||
- name: Upload a Build Artifact NET6
|
- name: Upload a Build Artifact NET6
|
||||||
uses: actions/upload-artifact@v2.2.4
|
uses: actions/upload-artifact@v4.3.1
|
||||||
with:
|
with:
|
||||||
name: RGB.NET-NET6
|
name: RGB.NET-NET6
|
||||||
path: bin/net6.0/RGB.NET.*.dll
|
path: bin/net6.0/RGB.NET.*.dll
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
- name: Upload a Build Artifact NET7
|
- name: Upload a Build Artifact NET7
|
||||||
uses: actions/upload-artifact@v2.2.4
|
uses: actions/upload-artifact@v4.3.1
|
||||||
with:
|
with:
|
||||||
name: RGB.NET-NET7
|
name: RGB.NET-NET7
|
||||||
path: bin/net7.0/RGB.NET.*.dll
|
path: bin/net7.0/RGB.NET.*.dll
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
- name: Upload a Build Artifact NET8
|
- name: Upload a Build Artifact NET8
|
||||||
uses: actions/upload-artifact@v2.2.4
|
uses: actions/upload-artifact@v4.3.1
|
||||||
with:
|
with:
|
||||||
name: RGB.NET-NET8
|
name: RGB.NET-NET8
|
||||||
path: bin/net8.0/RGB.NET.*.dll
|
path: bin/net8.0/RGB.NET.*.dll
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
- name: Upload Nuget Build Artifact
|
- name: Upload Nuget Build Artifact
|
||||||
uses: actions/upload-artifact@v2.2.4
|
uses: actions/upload-artifact@v4.3.1
|
||||||
with:
|
with:
|
||||||
name: RGB.NET-Nugets
|
name: RGB.NET-Nugets
|
||||||
path: bin/*nupkg
|
path: bin/*nupkg
|
||||||
|
|||||||
4
.github/workflows/pr_verify.yml
vendored
4
.github/workflows/pr_verify.yml
vendored
@ -10,9 +10,9 @@ jobs:
|
|||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4.1.1
|
||||||
- name: Setup .NET
|
- name: Setup .NET
|
||||||
uses: actions/setup-dotnet@v3
|
uses: actions/setup-dotnet@v4
|
||||||
with:
|
with:
|
||||||
dotnet-version: |
|
dotnet-version: |
|
||||||
8.0.x
|
8.0.x
|
||||||
|
|||||||
14
.github/workflows/release.yml
vendored
14
.github/workflows/release.yml
vendored
@ -13,11 +13,11 @@ jobs:
|
|||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4.1.1
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Setup .NET
|
- name: Setup .NET
|
||||||
uses: actions/setup-dotnet@v3
|
uses: actions/setup-dotnet@v4
|
||||||
with:
|
with:
|
||||||
dotnet-version: |
|
dotnet-version: |
|
||||||
8.0.x
|
8.0.x
|
||||||
@ -25,7 +25,7 @@ jobs:
|
|||||||
6.0.x
|
6.0.x
|
||||||
- name: Git Semantic Version
|
- name: Git Semantic Version
|
||||||
id: versioning
|
id: versioning
|
||||||
uses: PaulHatch/semantic-version@v4.0.3
|
uses: PaulHatch/semantic-version@v5.4.0
|
||||||
with:
|
with:
|
||||||
short_tags: false
|
short_tags: false
|
||||||
format: "${major}.${minor}.${patch}"
|
format: "${major}.${minor}.${patch}"
|
||||||
@ -36,25 +36,25 @@ jobs:
|
|||||||
- name: Test
|
- name: Test
|
||||||
run: dotnet test --no-build --verbosity normal --configuration Release
|
run: dotnet test --no-build --verbosity normal --configuration Release
|
||||||
- name: Upload a Build Artifact NET6
|
- name: Upload a Build Artifact NET6
|
||||||
uses: actions/upload-artifact@v2.2.4
|
uses: actions/upload-artifact@v4.3.1
|
||||||
with:
|
with:
|
||||||
name: RGB.NET-NET6
|
name: RGB.NET-NET6
|
||||||
path: bin/net6.0/RGB.NET.*.dll
|
path: bin/net6.0/RGB.NET.*.dll
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
- name: Upload a Build Artifact NET7
|
- name: Upload a Build Artifact NET7
|
||||||
uses: actions/upload-artifact@v2.2.4
|
uses: actions/upload-artifact@v4.3.1
|
||||||
with:
|
with:
|
||||||
name: RGB.NET-NET7
|
name: RGB.NET-NET7
|
||||||
path: bin/net7.0/RGB.NET.*.dll
|
path: bin/net7.0/RGB.NET.*.dll
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
- name: Upload a Build Artifact NET8
|
- name: Upload a Build Artifact NET8
|
||||||
uses: actions/upload-artifact@v2.2.4
|
uses: actions/upload-artifact@v4.3.1
|
||||||
with:
|
with:
|
||||||
name: RGB.NET-NET8
|
name: RGB.NET-NET8
|
||||||
path: bin/net8.0/RGB.NET.*.dll
|
path: bin/net8.0/RGB.NET.*.dll
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
- name: Upload Nuget Build Artifact
|
- name: Upload Nuget Build Artifact
|
||||||
uses: actions/upload-artifact@v2.2.4
|
uses: actions/upload-artifact@v4.3.1
|
||||||
with:
|
with:
|
||||||
name: RGB.NET-Nugets
|
name: RGB.NET-Nugets
|
||||||
path: bin/*nupkg
|
path: bin/*nupkg
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user