diff --git a/.github/workflows/publish_mauiex_nuget.yml b/.github/workflows/publish_mauiex_nuget.yml index d9d4ba1..92f3f37 100644 --- a/.github/workflows/publish_mauiex_nuget.yml +++ b/.github/workflows/publish_mauiex_nuget.yml @@ -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 diff --git a/README.md b/README.md index fbd2de5..b525ceb 100644 --- a/README.md +++ b/README.md @@ -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;