diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..53b7eb9 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,26 @@ +name: Publish to NuGet + +on: + push: + branches: + - main # Trigger on push to the main branch + workflow_dispatch: # Allow manual kick off + +jobs: + publish: + runs-on: ubuntu-latest # Use a Linux runner + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Setup .NET 6 + uses: actions/setup-dotnet@v1 + with: + dotnet-version: '6.0.x' # Use .NET 6 + + - name: Set NuGet Key and Publish to NuGet + run: | + $Nuget_Key = "${{ secrets.PUBLISH_TO_NUGET_ORG }}" + ./publish.ps1 + shell: pwsh # Use PowerShell Core \ No newline at end of file diff --git a/releases.md b/releases.md index d39648d..fae4c05 100644 --- a/releases.md +++ b/releases.md @@ -1,5 +1,9 @@ # Releases +## 2.0.18-update + +* Update to version 2.0.18 + ## 2.0.12-update.1 * Changed from ComponentBase to IComponent ( Thanks @chan18 ) diff --git a/source/timewarp-heroicons/20/solid/MinusIcon.razor b/source/timewarp-heroicons/20/solid/MinusIcon.razor index fc61b02..884f9d3 100644 --- a/source/timewarp-heroicons/20/solid/MinusIcon.razor +++ b/source/timewarp-heroicons/20/solid/MinusIcon.razor @@ -2,5 +2,5 @@ @inherits HeroIconBase - + diff --git a/source/timewarp-heroicons/timewarp-heroicons.csproj b/source/timewarp-heroicons/timewarp-heroicons.csproj index eff758b..5476945 100644 --- a/source/timewarp-heroicons/timewarp-heroicons.csproj +++ b/source/timewarp-heroicons/timewarp-heroicons.csproj @@ -16,7 +16,7 @@ timewarp; blazor; icons; tailwind; heroicons MIT Logo.png - 2.0.12-update.1 + 2.0.18