Remove Nerdbank versioning #9
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" ] | |
pull_request: | |
branches: [ "main", "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Allow unsecure commands | |
run: echo 'ACTIONS_ALLOW_UNSECURE_COMMANDS=true' >> $GITHUB_ENV | |
- 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/[email protected] | |
with: | |
versionSpec: '5.x' | |
- name: Use GitVersion | |
id: gitversion # step id used as reference for output values | |
uses: gittools/actions/gitversion/[email protected] | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: | | |
6.0.x | |
8.0.x | |
- name: Restore dependencies | |
run: dotnet restore src/FluentDragDrop.sln | |
- name: Build | |
run: dotnet build src --no-restore --configuration=Release /p:Version=${{steps.gitversion.outputs.semVer}} | |
- name: Test | |
run: dotnet test src --no-build --configuration=Release --verbosity normal | |
- name: pack nuget packages | |
run: dotnet pack src --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/FluentDragDrop*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json |