From 53328d2854b4d53a8f49cb69c1285a9a5238360a Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Thu, 30 May 2019 16:23:30 -0600 Subject: [PATCH] fix install of s3cmd for publishing releases in cirrus --- .cirrus.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index d1132484..de7a8798 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -26,7 +26,8 @@ nightly_task: - test only_if: $BRANCH == "master" script: | - apt install s3cmd + apt-get update + apt-get install -y s3cmd ./bootstrap s3cmd --access_key=$ACCESS_KEY --secret_key=$SECRET_KEY put ./rebar3 s3://rebar3-nightly environment: @@ -40,7 +41,8 @@ release_task: - test only_if: $CIRRUS_RELEASE != "" script: | - apt install s3cmd + apt-get update + apt-get install -y s3cmd ./bootstrap s3cmd --access_key=$ACCESS_KEY --secret_key=$SECRET_KEY put ./rebar3 s3://rebar3