Skip to content

feat: support parsing and retrieving SolutionGuid (#26) #10

feat: support parsing and retrieving SolutionGuid (#26)

feat: support parsing and retrieving SolutionGuid (#26) #10

Workflow file for this run

name: "Release"
on:
push:
tags:
- v**.**.** # Semantic Versioning like "v11.22.33"
jobs:
publish:
name: Build And Test And Publish
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
# Additional fetch to get all commits and tags
- run: git fetch --unshallow
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Run Publish using Nuke
run: ./build.ps1 -Target Publish -Configuration Release --nuget_api_key ${{ secrets.NUGET_API_KEY }}