patch stable release pipeline (#10021)

* version: bump stable to 2.1.9

* ci: move future releases to ethereum subdir on s3 (#10017)

* ci: move future releases to ethereum subdir on s3

* ci: redesign s3 bucket logic

* ci: use the releases bucket
This commit is contained in:
Afri Schoedon
2018-12-05 15:51:10 +01:00
committed by GitHub
parent 3eae1d3640
commit af1169d2ff
4 changed files with 9 additions and 9 deletions

View File

@@ -42,7 +42,7 @@ aws configure set aws_access_key_id $s3_key
aws configure set aws_secret_access_key $s3_secret
if [[ "$CI_COMMIT_REF_NAME" = "beta" || "$CI_COMMIT_REF_NAME" = "stable" || "$CI_COMMIT_REF_NAME" = "nightly" ]];
then
export S3_BUCKET=builds-parity-published;
export S3_BUCKET=releases.parity.io/ethereum;
else
export S3_BUCKET=builds-parity;
fi