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: Action to build and publish the project as a nuget package to github package registry | |
on: | |
push: | |
branches: [main] | |
tags: | |
- 'v*' # 监听以 "v" 开头的标签 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
outputs: | |
Version: ${{ steps.gitversion.outputs.SemVer }} | |
CommitsSinceVersionSource: ${{ steps.gitversion.outputs.CommitsSinceVersionSource }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 #fetch-depth is needed for GitVersion | |
#Install and calculate the new version with GitVersion | |
- name: Install GitVersion | |
uses: gittools/actions/gitversion/setup@v0.9.7 | |
with: | |
versionSpec: 5.x | |
- name: Determine Version | |
uses: gittools/actions/gitversion/execute@v0.9.7 | |
id: gitversion # step id used as reference for output values | |
- name: Display GitVersion outputs | |
run: | | |
echo "Version: ${{ steps.gitversion.outputs.SemVer }}" | |
echo "CommitsSinceVersionSource: ${{ steps.gitversion.outputs.CommitsSinceVersionSource }}" | |
#Build/pack the project | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- name: Build and Pack NuGet package | |
run: dotnet pack MqttNet.DependencyInjection/MqttNet.DependencyInjection.csproj -p:Version='${{ steps.gitversion.outputs.SemVer }}' -c Release | |
- name: Upload NuGet package to GitHub | |
uses: actions/upload-artifact@v2 | |
with: | |
name: nugetPackage | |
path: bin/Release/ | |
release: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
#Push NuGet package to GitHub packages | |
- name: Download nuget package artifact | |
uses: actions/download-artifact@v1.0.0 | |
with: | |
name: nugetPackage | |
- name: Push package to GitHub packages | |
run: dotnet nuget push nugetPackage/*.nupkg --api-key ${{ secrets.NUGET_PACKAGE_TOKEN }} --source "https://api.nuget.org/v3/index.json" | |
#Create release | |
- name: Create Release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.NUGET_PACKAGE_TOKEN }} | |
with: | |
tag_name: ${{ needs.build.outputs.Version }} | |
release_name: Release ${{ needs.build.outputs.Version }} |