Skip to content

Commit

Permalink
fix: release-prod buildspec quoting (#584)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-chew authored May 17, 2022
1 parent 269847b commit 0361e46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws-encryption-sdk-net/codebuild/release/release-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ phases:
- export VERSION=`grep '<Version>' Source/AWSEncryptionSDK.csproj | sed 's/.*<Version>\(.*\)<\/Version>/\1/'`
- dotnet pack Source/AWSEncryptionSDK.csproj --no-build /p:Configuration=Release --output build
- export API_ACCESS_KEY=$(python $BASE/retrieve_api_access_key.py)
- dotnet nuget push build/AWS.EncryptionSDK.$VERSION.nupkg --api-key $(API_ACCESS_KEY) --source https://api.nuget.org/v3/index.json
- dotnet nuget push build/AWS.EncryptionSDK.$VERSION.nupkg --api-key "$API_ACCESS_KEY" --source https://api.nuget.org/v3/index.json
# Now validate we can run examples
- sed -i.backup '/Source\/AWSEncryptionSDK.csproj/d' Examples/AWSEncryptionSDKExamples.csproj
- dotnet add Examples/AWSEncryptionSDKExamples.csproj package AWS.EncryptionSDK --version $VERSION
Expand Down

0 comments on commit 0361e46

Please sign in to comment.