Nuget Publish #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nuget Publish | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: version | |
required: true | |
type: string | |
jobs: | |
publish-to-nuget: | |
runs-on: ubuntu-latest | |
steps: | |
- name: version pattern | |
id: check-version | |
run: | | |
version="${{ github.event.inputs.version }}" | |
if [[ $version =~ [0-9]+\.[0-9]+\.[0-9]+ ]]; then | |
echo "Input matches pattern: $version" | |
else | |
echo "Input does not match pattern: $version" | |
exit 1 | |
fi | |
- name: version check | |
if: success() | |
run: echo ok | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer | |
- name: Setup Dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '9.x' | |
- name: restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build -c Release --no-restore | |
- name: Test | |
run: dotnet test -c Release --no-build --verbosity normal | |
- name: Pack | |
run: dotnet pack -p:PackageVersion=${{ github.event.inputs.version }} -c Release --nologo --output working-nuget | |
- name: Publish the package to nuget.org | |
run: dotnet nuget push ./working-nuget/*.nupkg -k $NUGET_AUTH_TOKEN -s https://api.nuget.org/v3/index.json | |
env: | |
NUGET_AUTH_TOKEN: ${{ secrets.NUGET_TOKEN }} |