Compare commits
6 Commits
@@ -16,6 +16,7 @@ on:
|
||||
jobs:
|
||||
build:
|
||||
name: Build
|
||||
runs-on: linux
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
@@ -27,3 +28,5 @@ jobs:
|
||||
run: dotnet restore
|
||||
- name: Build
|
||||
run: dotnet build --no-restore
|
||||
- name: Create NuGet package
|
||||
run: dotnet pack -c Debug --output ./
|
||||
@@ -13,6 +13,7 @@ on:
|
||||
jobs:
|
||||
build:
|
||||
name: Build
|
||||
runs-on: linux
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
@@ -26,6 +27,7 @@ jobs:
|
||||
run: dotnet build --no-restore
|
||||
version:
|
||||
name: Determine version
|
||||
runs-on: linux
|
||||
needs: build
|
||||
steps:
|
||||
- name: Checkout
|
||||
@@ -49,6 +51,7 @@ jobs:
|
||||
version: ${{ steps.gitversion.outputs.SemVer }}
|
||||
pack:
|
||||
name: Pack
|
||||
runs-on: linux
|
||||
needs: version
|
||||
steps:
|
||||
- name: Checkout
|
||||
@@ -68,6 +71,7 @@ jobs:
|
||||
version: ${{needs.version.outputs.version}}
|
||||
publish:
|
||||
name: Publish
|
||||
runs-on: linux
|
||||
needs: pack
|
||||
steps:
|
||||
- name: Download artifact
|
||||
|
||||
@@ -8,6 +8,13 @@
|
||||
|
||||
---
|
||||
|
||||
## Informations
|
||||
|
||||
> [!Important]
|
||||
> **For Github users:**
|
||||
>
|
||||
> This is only mirror repository. All changes are first uploaded to the repository <a href="https://repos.mateuszskoczek.com/SimpleToolkit/SimpleToolkit.Extensions">here</a>. Releases are also published on original repository. However, Github repository handles issues and pull requests for better accessibility.
|
||||
|
||||
## NuGet registry status
|
||||
|
||||
<table>
|
||||
@@ -115,7 +122,7 @@ dotnet add package SimpleToolkit.Extensions
|
||||
**Package reference in .csproj file:**
|
||||
|
||||
```
|
||||
<PackageReference Include="SimpleToolkit.Extensions" Version="*.*.*" />
|
||||
<PackageReference Include="SimpleToolkit.Extensions" Version="<version>" />
|
||||
```
|
||||
|
||||
## Attribution and contribution
|
||||
|
||||
@@ -44,7 +44,7 @@ dotnet add package SimpleToolkit.Extensions
|
||||
**Package reference in .csproj file:**
|
||||
|
||||
```
|
||||
<PackageReference Include="SimpleToolkit.Extensions" Version="*.*.*" />
|
||||
<PackageReference Include="SimpleToolkit.Extensions" Version="<version>" />
|
||||
```
|
||||
|
||||
## Attribution and contribution
|
||||
|
||||
Reference in New Issue
Block a user