diff options
author | Tristan Sloughter <t@crashfast.com> | 2019-05-30 17:27:53 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-30 17:27:53 -0600 |
commit | eea09f13065df68345f226dad43feae326c999fc (patch) | |
tree | 9756c50d3dee89341169aa4ac0d008f0306f4029 | |
parent | 68b407e76346bd6493f6a6ee090ced4f90cacad5 (diff) | |
parent | 53328d2854b4d53a8f49cb69c1285a9a5238360a (diff) |
Merge pull request #2094 from tsloughter/cirrus-s3cmd
fix install of s3cmd for publishing releases in cirrus
-rw-r--r-- | .cirrus.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index d113248..de7a879 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 |