浏览代码

fix install of s3cmd for publishing releases in cirrus

pull/2094/head
Tristan Sloughter 6 年前
父节点
当前提交
53328d2854
找不到此签名对应的密钥 GPG 密钥 ID: AAB97DDECCEB8150
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. +4
    -2
      .cirrus.yml

+ 4
- 2
.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

正在加载...
取消
保存