Skip to content

Version bump.

Version bump. #140

Workflow file for this run

name: Build, Pack & Publish
on:
push:
branches:
- 'master'
tags:
- 'v*'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: true
- name: Install .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.*
source-url: https://api.nuget.org/v3/index.json
env:
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Tool Setup
run: dotnet tool restore --tool-manifest "src/.config/dotnet-tools.json"
- name: Build
run: dotnet build src/DtronixCommon -c Release
- name: Pack
run: dotnet pack src/DtronixCommon -c Release -o ./artifacts
- name: Unit tests
run: dotnet test src/DtronixCommon.Tests -c Release
- name: Export artifacts
uses: actions/upload-artifact@v2
with:
path: artifacts/*.nupkg
- name: Get tag name
if: startsWith(github.ref, 'refs/tags/')
uses: olegtarasov/[email protected]
id: tagName
- name: Create release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
name: "DtronixCommon ${{ steps.tagName.outputs.tag }} Released"
files: |
artifacts/*.nupkg
artifacts/*.snupkg
- name: Push Nuget packages
if: startsWith(github.ref, 'refs/tags/')
run: dotnet nuget push artifacts/*.nupkg --api-key ${{ secrets.ORG_NUGET_AUTH_TOKEN }} --skip-duplicate