Skip to content

Commit

Permalink
Merge pull request #42 from pureblazor/codymullins-patch-1
Browse files Browse the repository at this point in the history
Update build.yml
  • Loading branch information
codymullins authored Mar 21, 2024
2 parents 180c959 + 91171f7 commit 5e636a8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ name: .NET
on:
push:
branches: [ "main" ]

pull_request:
branches: [ "main" ]

jobs:
build:

Expand All @@ -28,4 +29,4 @@ jobs:

- name: Publish to NuGet
if: ${{ github.ref == 'refs/heads/main' }}
run: dotnet nuget push --skip-duplicate --api-key ${{secrets.PB_COMPONENTS_NUGET_KEY}} --source 'https://api.nuget.org/v3/index.json' ${{github.workspace}}/src/**/Pure.Blazor.Components.*.nupkg
run: dotnet nuget push --skip-duplicate --api-key ${{secrets.PB_COMPONENTS_NUGET_KEY}} --source 'https://api.nuget.org/v3/index.json' ${{github.workspace}}/src/**/PureBlazor.Components.*.nupkg
Binary file removed src/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion src/Pure.Blazor.Components/Forms/PureInput.razor
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
}
else if (!string.IsNullOrWhiteSpace(errorMessage))
{
<span class="text-xs font-sans text-error py-2">@errorMessage</span>
<span class="text-xs font-sans text-red-700 py-2">@errorMessage</span>
}

</div>
Expand Down
13 changes: 7 additions & 6 deletions src/Pure.Blazor.Components/Pure.Blazor.Components.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,20 @@
<LangVersion>preview</LangVersion>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>PureBlazor Components</Title>
<Version>0.0.9</Version>
<Description>Blazor UI components, built with Tailwind CSS for the PureBlazor CMS</Description>
<PackageProjectUrl>https://github.com/pureblazor/components</PackageProjectUrl>
<Version>0.1.0</Version>
<PackageId>PureBlazor.Components</PackageId>
<Description>Blazor UI components for .NET Blazor with an optional headless mode.</Description>
<PackageProjectUrl>https://pureblazor.com</PackageProjectUrl>
<RepositoryUrl>https://github.com/pureblazor/components</RepositoryUrl>
<PackageTags>blazor, maui, tailwind, tailwindcss, components, pureblazor</PackageTags>
<PackageTags>blazor, maui, ssr, wasm, headless, tailwind, tailwindcss, components, pureblazor</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReleaseNotes>initial early release</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Company>CodeFrog</Company>
<Company>PureBlazor</Company>
<Authors>codymullins</Authors>
<Copyright>Copyright 2023 CodeFrog</Copyright>
<Copyright>Copyright 2024 PureBlazor</Copyright>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 5e636a8

Please sign in to comment.