aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-07-23 10:55:52 -0700
committerAndrew Kelley <andrew@ziglang.org>2020-07-23 10:58:07 -0700
commitb4d383a47876b794b3f0950151c7cdcd5eddfc7a (patch)
treeb10efcd63b41c8d0ff7dbf3f3376ae480b58b399 /ci
parent32a6759a7ae532742198bb1d257250f196916a75 (diff)
downloadzig-b4d383a47876b794b3f0950151c7cdcd5eddfc7a.tar.gz
zig-b4d383a47876b794b3f0950151c7cdcd5eddfc7a.zip
ci: looks like s3cmd wants a new path for the config file
Thanks Jakub Konka for exploring this.
Diffstat (limited to 'ci')
-rwxr-xr-xci/azure/windows_upload3
1 files changed, 2 insertions, 1 deletions
diff --git a/ci/azure/windows_upload b/ci/azure/windows_upload
index 7ed1b7d1f7..3abfcbab88 100755
--- a/ci/azure/windows_upload
+++ b/ci/azure/windows_upload
@@ -17,7 +17,8 @@ if [ "${BUILD_REASON}" != "PullRequest" ]; then
mv dist "$DIRNAME"
7z a "$TARBALL" "$DIRNAME"
- mv "$DOWNLOADSECUREFILE_SECUREFILEPATH" "$HOME/.s3cfg"
+ cp "$DOWNLOADSECUREFILE_SECUREFILEPATH" "$HOME/.s3cfg"
+ cp "$DOWNLOADSECUREFILE_SECUREFILEPATH" "$HOME/AppData/Roaming/s3cmd.ini"
s3cmd put -P --add-header="cache-control: public, max-age=31536000, immutable" "$TARBALL" s3://ziglang.org/builds/
SHASUM=$(sha256sum $TARBALL | cut '-d ' -f1)