From d78132bfbcd7770997f4a93463856977e3374134 Mon Sep 17 00:00:00 2001 From: Bastian Noffer Date: Tue, 14 Jan 2025 16:31:52 +0100 Subject: [PATCH] Update: Preview and Release Github Actions --- .github/workflows/preview.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index 63e17d6..3879340 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -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 }} \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7844499..90edd46 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 }} \ No newline at end of file