Skip to content

Commit

Permalink
Merge pull request #7 from mikeyoshino/2023-8-10/UpdatedHeroIconsToVe…
Browse files Browse the repository at this point in the history
…rsion2.0.18

Update Icons to 2.0.18
  • Loading branch information
StevenTCramer committed Aug 11, 2023
2 parents 02a1463 + 5c3f247 commit c56a30c
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 2 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -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
4 changes: 4 additions & 0 deletions releases.md
Original file line number Diff line number Diff line change
@@ -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 )
Expand Down
2 changes: 1 addition & 1 deletion source/timewarp-heroicons/20/solid/MinusIcon.razor
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
@inherits HeroIconBase

<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" @attributes=Attributes>
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 10C3 9.58579 3.33579 9.25 3.75 9.25L14.25 9.25C14.6642 9.25 15 9.58579 15 10C15 10.4142 14.6642 10.75 14.25 10.75L3.75 10.75C3.33579 10.75 3 10.4142 3 10Z" fill="#0F172A"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 10C4 9.58579 4.33579 9.25 4.75 9.25L15.25 9.25C15.6642 9.25 16 9.58579 16 10C16 10.4142 15.6642 10.75 15.25 10.75L4.75 10.75C4.33579 10.75 4 10.4142 4 10Z" fill="#0F172A"/>
</svg>
2 changes: 1 addition & 1 deletion source/timewarp-heroicons/timewarp-heroicons.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<PackageTags>timewarp; blazor; icons; tailwind; heroicons</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>Logo.png</PackageIcon>
<Version>2.0.12-update.1</Version>
<Version>2.0.18</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit c56a30c

Please sign in to comment.