Skip to content

Nuget tags fix (#4) #46

Nuget tags fix (#4)

Nuget tags fix (#4) #46

Workflow file for this run

name: CI/CD with Auto Versioning
on:
push:
branches: [ master ]
jobs:
versioning:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.set_version.outputs.new_version }}
steps:
- uses: actions/[email protected]
- name: Bump version and push tag
id: set_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
default_bump: patch # Automatically bump patch version
release_branches: release.*,hotfix.*,master
pre_release_branches: feature.*
build:
needs: versioning
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: '8.0'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore -c Release
- name: Test
run: dotnet test --no-build -c Release --verbosity normal
- name: Pack
run: dotnet pack --no-build -c Release -o nupkg /p:PackageVersion=${{ needs.versioning.outputs.version }}
- name: Upload NuGet packages as artifacts
uses: actions/[email protected]
with:
name: nuget-packages
path: nupkg/*.nupkg
publish:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download NuGet packages artifacts
uses: actions/[email protected]
with:
name: nuget-packages
path: nupkg
- name: Push to NuGet
run: dotnet nuget push "**/*.nupkg" -k ${{secrets.NUGET_API_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate