Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update build.yml #42

Merged
merged 6 commits into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading