Skip to content

Commit ae22196

Browse files
authored
Merge pull request #11 from bnotech/bugfix/ci-8.0
Update: Preview and Release Github Actions
2 parents 3f0161f + 10695e2 commit ae22196

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/preview.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run: |
4444
$version=${{ steps.tag.outputs.result }}
4545
$version=$version.replace("refs/tags/v", "")
46-
$package="package/Matomo.Maui." + $version + ".nupkg"
46+
$package="../package/Matomo.Maui." + $version + ".nupkg"
4747
dotnet nuget push $package -k "$env:NUGET_ORG_TOKEN" -s https://api.nuget.org/v3/index.json
4848
env:
4949
NUGET_ORG_TOKEN: ${{ secrets.NUGET_ORG_TOKEN }}

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: |
4545
$version=${{ steps.tag.outputs.result }}
4646
$version=$version.replace("refs/tags/v", "")
47-
$package="package/Matomo.Maui." + $version + ".nupkg"
47+
$package="../package/Matomo.Maui." + $version + ".nupkg"
4848
dotnet nuget push $package -k "$env:NUGET_ORG_TOKEN" -s https://api.nuget.org/v3/index.json
4949
env:
5050
NUGET_ORG_TOKEN: ${{ secrets.NUGET_ORG_TOKEN }}

0 commit comments

Comments
 (0)