Skip to content

Commit 2433c49

Browse files
committed
Slightly reword README
1 parent b864103 commit 2433c49

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/deploy.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ on:
88
jobs:
99
build:
1010
name: Build
11-
uses: StirlingLabs/Actions/.github/workflows/dotnetBuild.yaml@main
11+
uses: StirlingLabs/Actions/.github/workflows/dotnetBuild.yaml@v23.04.0
1212
with:
1313
release: true
14+
secrets: inherit
1415

1516
release:
1617
name: Release
1718
needs: [ build ]
18-
uses: StirlingLabs/Actions/.github/workflows/dotnetRelease.yaml@main
19+
uses: StirlingLabs/Actions/.github/workflows/dotnetRelease.yaml@v23.04.0
1920
with:
2021
nuget: true
2122
library: true
22-
secrets:
23-
NUGET_STIRLINGLABS_API_KEY: ${{ secrets.NUGET_STIRLINGLABS_API_KEY }}
23+
secrets: inherit

.github/workflows/integrate.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212

1313
threshold:
1414
name: Check Status
15-
uses: StirlingLabs/Actions/.github/workflows/threshold.yaml@main
15+
uses: StirlingLabs/Actions/.github/workflows/threshold.yaml@v23.04.0
1616

1717
build:
1818
name: Build
1919
needs: threshold
2020
if: |
2121
needs.threshold.outputs.continue == 'true' &&
2222
needs.threshold.outputs.release != 'true'
23-
uses: StirlingLabs/Actions/.github/workflows/dotnetBuild.yaml@main
23+
uses: StirlingLabs/Actions/.github/workflows/dotnetBuild.yaml@v23.04.0
2424
with:
2525
release: false
2626
strictPreflight: false

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
## Introduction ##
66
This is a fork of [assimpnet by Starnick](https://bitbucket.org/Starnick/assimpnet), a cross-platform .NET wrapper for the Open Asset Import Library (otherwise known as [Assimp](https://github.com/StirlingLabs/assimp)), which is a 3D model import-export library. The primary motivation is for this library to power content pipelines to import and process 3D models. Please see the Assimp website for a full list of supported formats and features. Each version of the managed wrapper tries to maintain parity with the features of the native version.
77

8-
We intend to keep this fork close to the original, with the main differences being a focus on supporting modern .Net, Apple Silicon and a open, publicly-verifiable build chain.
8+
We intend to keep this fork close to the original, with the main differences being a focus on supporting modern .Net, Apple Silicon and a open, publicly verifiable build chain.
99

1010
The managed assembly is compiled as **AnyCpu** and the native 64-bit multi-threaded binaries are loaded dynamically (including support for Apple Silicon).
1111

0 commit comments

Comments
 (0)