Skip to content

Commit 0361e46

Browse files
authored
fix: release-prod buildspec quoting (#584)
1 parent 269847b commit 0361e46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aws-encryption-sdk-net/codebuild/release/release-prod.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ phases:
4646
- export VERSION=`grep '<Version>' Source/AWSEncryptionSDK.csproj | sed 's/.*<Version>\(.*\)<\/Version>/\1/'`
4747
- dotnet pack Source/AWSEncryptionSDK.csproj --no-build /p:Configuration=Release --output build
4848
- export API_ACCESS_KEY=$(python $BASE/retrieve_api_access_key.py)
49-
- dotnet nuget push build/AWS.EncryptionSDK.$VERSION.nupkg --api-key $(API_ACCESS_KEY) --source https://api.nuget.org/v3/index.json
49+
- dotnet nuget push build/AWS.EncryptionSDK.$VERSION.nupkg --api-key "$API_ACCESS_KEY" --source https://api.nuget.org/v3/index.json
5050
# Now validate we can run examples
5151
- sed -i.backup '/Source\/AWSEncryptionSDK.csproj/d' Examples/AWSEncryptionSDKExamples.csproj
5252
- dotnet add Examples/AWSEncryptionSDKExamples.csproj package AWS.EncryptionSDK --version $VERSION

0 commit comments

Comments
 (0)