Merge pull request #147 from awaescher/docs #203
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: .NET Build, Test, and Publish Nuget Package | |
on: | |
push: | |
branches: [ "main", "master" ] | |
paths: [ 'src/**' ] | |
pull_request: | |
branches: [ "main", "master" ] | |
paths: [ 'src/**' ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fetch all history for all tags and branches | |
run: | | |
git config remote.origin.url https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} | |
git fetch --prune --unshallow | |
- name: Install GitVersion | |
uses: gittools/actions/gitversion/setup@v0.9.7 | |
with: | |
versionSpec: '5.x' | |
- name: Use GitVersion | |
id: gitversion # step id used as reference for output values | |
uses: gittools/actions/gitversion/execute@v0.9.7 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: | | |
6.0.x | |
8.0.x | |
- name: Restore dependencies | |
run: dotnet restore OllamaSharp.sln | |
- name: Build | |
run: dotnet build --no-restore --configuration=Release /p:Version=${{steps.gitversion.outputs.semVer}} | |
- name: Test | |
run: dotnet test --no-build --configuration=Release --verbosity normal --filter 'FullyQualifiedName!~FunctionalTests' | |
- name: pack nuget packages | |
run: dotnet pack --output nupkgs --configuration=Release --no-restore --no-build /p:PackageVersion=${{steps.gitversion.outputs.semVer}} | |
- name: Create a GitHub release | |
uses: ncipollo/release-action@v1 | |
with: | |
tag: ${{steps.gitversion.outputs.semVer}} | |
name: Release ${{steps.gitversion.outputs.semVer}} | |
if: github.event_name != 'pull_request' | |
- name: upload nuget package | |
if: github.event_name != 'pull_request' | |
run: dotnet nuget push nupkgs/OllamaSharp*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json |