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