Procházet zdrojové kódy

Merge pull request #2094 from tsloughter/cirrus-s3cmd

fix install of s3cmd for publishing releases in cirrus
pull/2081/head
Tristan Sloughter před 6 roky
odevzdal GitHub
rodič
revize
eea09f1306
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
1 změnil soubory, kde provedl 4 přidání a 2 odebrání
  1. +4
    -2
      .cirrus.yml

+ 4
- 2
.cirrus.yml Zobrazit soubor

@ -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

Načítá se…
Zrušit
Uložit