Skip to content

Commit

Permalink
Fix GitHub Action builds
Browse files Browse the repository at this point in the history
  • Loading branch information
jfversluis committed Aug 17, 2023
1 parent e220229 commit ae6f172
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build
run: msbuild src\Plugin.Maui.Feature.sln -r -property:Configuration=Release
run: dotnet build src\Plugin.Maui.Feature.sln -c Release
2 changes: 1 addition & 1 deletion .github/workflows/release-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
id: get_version
uses: battila7/get-version-action@v2
- name: Pack
run: msbuild -t:pack -r src\Plugin.Maui.Feature.sln -property:Configuration=Release /p:Version=${{ steps.get_version.outputs.version-without-v }}
run: dotnet pack src\Plugin.Maui.Feature.sln -c Release -p:PackageVersion=${{ steps.get_version.outputs.version-without-v }}
- name: Push
run: dotnet nuget push src\Plugin.Maui.Feature\bin\Release\Plugin.Maui.Feature.${{ steps.get_version.outputs.version-without-v }}.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }}
env:
Expand Down

0 comments on commit ae6f172

Please sign in to comment.