Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

storage: introduce requesterPays #2392

Merged
merged 14 commits into from
Jun 29, 2017
6 changes: 6 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,19 @@ environment:
GCLOUD_TESTS_KEY_SECRET:
secure: usGkvXjqCzDNIQHx8oEncrZOmez7GBocB1EXM+g/9rw=

GCLOUD_TESTS_KEY_NON_WHITELIST: key.appveyor.non-whitelist.json
GCLOUD_TESTS_KEY_NON_WHITELIST_SECRET:
secure: IRvjqNWclDExf6ngyYKWjqfArffGNtvawuRqqDOLTaT8frozr9BOkxdxHCDYapR1

install:
- ps: Install-Product node $env:nodejs_version
- ps: >-
if (!$env:APPVEYOR_PULL_REQUEST_NUMBER) {
nuget install secure-file -ExcludeVersion
secure-file\tools\secure-file -decrypt key.appveyor.json.enc -secret $env:GCLOUD_TESTS_KEY_SECRET
$env:GCLOUD_TESTS_KEY=$env:APPVEYOR_BUILD_FOLDER + '\' + $env:GCLOUD_TESTS_KEY
secure-file\tools\secure-file -decrypt key.appveyor.non-whitelist.json.enc -secret $env:GCLOUD_TESTS_KEY_NON_WHITELIST_SECRET
$env:GCLOUD_TESTS_KEY_NON_WHITELIST=$env:APPVEYOR_BUILD_FOLDER + '\' + $env:GCLOUD_TESTS_KEY_NON_WHITELIST
}
- npm install -g npm # Force using the latest npm to get dedupe during install
- set PATH=%APPDATA%\npm;%PATH%
Expand Down
Binary file added key.appveyor.non-whitelist.json.enc
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/storage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"create-error-class": "^3.0.2",
"duplexify": "^3.5.0",
"extend": "^3.0.0",
"gcs-resumable-upload": "^0.7.1",
"gcs-resumable-upload": "^0.8.0",
"hash-stream-validation": "^0.2.1",
"is": "^3.0.1",
"mime-types": "^2.0.8",
Expand Down
Loading