mirror of
https://github.com/Ryubing/SharpMetal.git
synced 2025-05-12 18:50:37 +01:00
Bump version + Update workflows
This commit is contained in:
parent
d0983d9e29
commit
0f78dc75ed
3 changed files with 8 additions and 8 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -12,11 +12,11 @@ jobs:
|
|||
build:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- name: Setup .NET
|
||||
uses: actions/setup-dotnet@v3
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
dotnet-version: 7.0.x
|
||||
dotnet-version: 8.x
|
||||
- name: Restore dependencies
|
||||
run: dotnet restore
|
||||
- name: Build
|
||||
|
|
8
.github/workflows/format.yml
vendored
8
.github/workflows/format.yml
vendored
|
@ -19,17 +19,17 @@ jobs:
|
|||
format:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- name: Setup .NET
|
||||
uses: actions/setup-dotnet@v3
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
dotnet-version: 7.0.x
|
||||
dotnet-version: 8.x
|
||||
- run: dotnet restore
|
||||
- name: Format
|
||||
run: dotnet format --verify-no-changes --report ./report.json -v d
|
||||
- name: Upload report
|
||||
if: failure()
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: dotnet-format
|
||||
path: ./report.json
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<AssemblyName>SharpMetal</AssemblyName>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||
<Version>1.0.0-preview20</Version>
|
||||
<Version>1.0.0-preview21</Version>
|
||||
<Description>Handcrafted Metal bindings for C#</Description>
|
||||
<RepositoryUrl>https://github.com/IsaacMarovitz/SharpMetal</RepositoryUrl>
|
||||
<RepositoryType>git</RepositoryType>
|
||||
|
|
Loading…
Reference in a new issue