mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-05 19:59:30 +00:00
8 lines
219 B
Bash
8 lines
219 B
Bash
|
#!/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"
|