Skip to content

Commit

Permalink
fix: skip quotes for variables
Browse files Browse the repository at this point in the history
  • Loading branch information
dpraimeyuu committed Jan 10, 2024
1 parent ccb4603 commit cd0f138
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ jobs:
NUGET_DIRECTORY="${NUGetDirectory}" # Adjust this to your variable name
NUGET_APIKEY="${NUGET_APIKEY}" # Adjust this to your variable name
for file in $(find "$NUGET_DIRECTORY" -type f -name "*.nupkg"); do
dotnet nuget push "$file" --api-key "$NUGET_APIKEY" --source https://api.nuget.org/v3/index.json --skip-duplicate
for file in $(find $NUGET_DIRECTORY -type f -name "*.nupkg"); do
dotnet nuget push "$file" --api-key $NUGET_APIKEY --source https://api.nuget.org/v3/index.json --skip-duplicate
done
env:
NUGetDirectory: ${{ env.NUGET_DIRECTORY }}
Expand Down

0 comments on commit cd0f138

Please sign in to comment.