Skip to content

Commit

Permalink
Merge branch 'maui'
Browse files Browse the repository at this point in the history
  • Loading branch information
Morten Nielsen committed Oct 19, 2023
2 parents faaf138 + 7e9b1af commit 05135f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish_mauiex_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
uses: actions/upload-artifact@v1
with:
name: NuGet Packages
path: artifacts/NuGet/Release
path: artifacts/Release/NuGet

- name: Push to NuGet
run: |
dotnet nuget push artifacts\NuGet\Release\*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://nuget.org
dotnet nuget push artifacts\NuGet\Release\*.snupkg -k ${{ secrets.NUGET_API_KEY }} -s https://nuget.org
dotnet nuget push artifacts\Release\NuGet\*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://nuget.org
dotnet nuget push artifacts\Release\NuGet\*.snupkg -k ${{ secrets.NUGET_API_KEY }} -s https://nuget.org
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A set of .NET MAUI controls
In `MauiProgram.CreateMauiApp` register the controls:

```cs
using dotMorten.MauiEx; // Include using to get extension method
using MauiEx; // Include using to get extension method
namespace SampleApp;

Expand Down

0 comments on commit 05135f0

Please sign in to comment.