Skip to content

Commit

Permalink
Merge pull request #10 from bnotech/bugfix/ci-8.0
Browse files Browse the repository at this point in the history
Update: Preview and Release Github Actions
  • Loading branch information
bnoffer authored Jan 14, 2025
2 parents 56bf4be + d78132b commit 3f0161f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ jobs:
$version=${{ steps.tag.outputs.result }}
$version=$version.replace("refs/tags/v", "")
$package="package/Matomo.Maui." + $version + ".nupkg"
dotnet nuget push $package -k "$env:NUGET_ORG_TOKEN" -Source https://api.nuget.org/v3/index.json
dotnet nuget push $package -k "$env:NUGET_ORG_TOKEN" -s https://api.nuget.org/v3/index.json
env:
NUGET_ORG_TOKEN: ${{ secrets.NUGET_ORG_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ jobs:
$version=${{ steps.tag.outputs.result }}
$version=$version.replace("refs/tags/v", "")
$package="package/Matomo.Maui." + $version + ".nupkg"
dotnet nuget push $package -k "$env:NUGET_ORG_TOKEN" -Source https://api.nuget.org/v3/index.json
dotnet nuget push $package -k "$env:NUGET_ORG_TOKEN" -s https://api.nuget.org/v3/index.json
env:
NUGET_ORG_TOKEN: ${{ secrets.NUGET_ORG_TOKEN }}

0 comments on commit 3f0161f

Please sign in to comment.