Skip to content

Commit

Permalink
ci: ensure release-pipeline nuget package push step uses correct syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Per Kops committed Jun 28, 2024
1 parent 75186da commit c12b051
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ jobs:
run: dotnet pack -c Release --no-restore -o ${GITHUB_WORKSPACE}/packages -p:RepositoryBranch=$BRANCH_NAME /p:PublicRelease=true

- name: 📦 Push packages to NuGet
run: dotnet nuget push ${GITHUB_WORKSPACE}/packages/'Atc.Rest.Client.'${NBGV_NuGetPackageVersion}'.nupkg' -k ${{ secrets.NUGET_KEY }} -s ${{ env.NUGET_REPO_URL }} --skip-duplicate --no-symbols true
run: dotnet nuget push ${GITHUB_WORKSPACE}/packages/Atc.Rest.Client.${{ env.NBGV_NuGetPackageVersion }}.nupkg -k ${{ secrets.NUGET_KEY }} -s ${{ env.NUGET_REPO_URL }} --skip-duplicate --no-symbols true

0 comments on commit c12b051

Please sign in to comment.