Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
IeuanWalker committed Mar 19, 2021
1 parent 0cf625b commit 38ed512
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: NuGet package
path: "**/*.nupkg"
path: "**/Xamarin.Forms.Breadcrumb.${{ github.event.release.tag_name }}.nupkg"
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2
with:
name: NuGet package
path: "**/*.snupkg"
path: "**/Xamarin.Forms.Breadcrumb.${{ github.event.release.tag_name }}.snupkg"
- name: Publish NuGet package
run: dotnet nuget push **/*.nupkg --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json
run: dotnet nuget push **/Xamarin.Forms.Breadcrumb.${{ github.event.release.tag_name }}.nupkg --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json
2 changes: 2 additions & 0 deletions Breadcrumb.sln
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Breadcrumb", "Breadcrumb\Br
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{6CCF26E6-D335-4217-ACAA-C4CD026CEA8E}"
ProjectSection(SolutionItems) = preProject
logo.png = logo.png
README.md = README.md
.github\workflows\release.yml = .github\workflows\release.yml
EndProjectSection
EndProject
Global
Expand Down
7 changes: 6 additions & 1 deletion Breadcrumb/Breadcrumb.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,19 @@
<PackageTags>Breadcrumb, navigation, xamarin, xamarin.forms</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageId>Xamarin.Forms.Breadcrumb</PackageId>
<Version>2.6.0-beta.4</Version>
<Version>2.6.0-beta.5</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageIcon>logo.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
<!-- This None is here so the conditionally included files show up in the Solution Explorer -->
<None Include="**\*.cs;**\*.xml;**\*.axml;**\*.png" Exclude="obj\**\*.*;bin\**\*.*;bin;obj" />
<None Include="..\logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

<ItemGroup>
Expand Down
Binary file added logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 38ed512

Please sign in to comment.