Skip to content

Fixing GenericTreeGrid styling issues and adding unit tests #24

Fixing GenericTreeGrid styling issues and adding unit tests

Fixing GenericTreeGrid styling issues and adding unit tests #24

Workflow file for this run

name: Publish Multi-Targeted NuGet Package
on:
push:
branches:
- main
jobs:
build-and-publish:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build all target frameworks
run: dotnet build DaxStudio.Controls\DaxStudio.Controls.csproj --configuration Release
- name: Push package to NuGet
run: dotnet nuget push .\DaxStudio.Controls\bin\Release\*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate