You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
- pr_id=$(basename "$CI_PULL_REQUEST")
- [ -z "$pr_id" ] && exit
- backend="$FEATURES"
- password="$JOINPLUME_PASSWORD"
-
- curl -T plume.tar.gz "https://circleci:$password@joinplu.me/upload_pr/$backend/$pr_id.tar.gz"
|