Skip to content

fix: clear table placeholders when data is empty (#344) #8

fix: clear table placeholders when data is empty (#344)

fix: clear table placeholders when data is empty (#344) #8

Workflow file for this run

name: Publish
on:
push:
tags:
- '*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore /p:PackageVersion=${{ github.ref_name }}
- name: Publish NuGet
run: dotnet nuget push **/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate