mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-07-16 17:21:51 +08:00
37 lines
1.7 KiB
Bash
Executable File
37 lines
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
# Prerequistes
|
|
# Environment variables:
|
|
# BINTRAY_API_KEY - Working API key
|
|
# BINTRAY_API_USER - Bintray username.
|
|
# SLIC3R_VERSION - Development version # for Slic3r
|
|
|
|
|
|
if [ $(git describe &>/dev/null) ]; then
|
|
SLIC3R_BUILD_ID=$(git describe)
|
|
else
|
|
SLIC3R_BUILD_ID=${SLIC3R_VERSION}d-$(git rev-parse --short head)
|
|
fi
|
|
|
|
if [ "$(git symbolic-ref HEAD | sed 's!refs\/heads\/!!')" == "master" ]; then
|
|
# If building master, goes in slic3r_dev
|
|
SLIC3R_PKG=slic3r_dev
|
|
version=$SLIC3R_BUILD_ID
|
|
else
|
|
# If building a branch, put the package somewhere else.
|
|
SLIC3R_PKG=Slic3r_Branches
|
|
version=$SLIC3R_BUILD_ID-$(git symbolic-ref HEAD | sed 's!refs\/heads\/!!')
|
|
fi
|
|
|
|
file=$1
|
|
echo "Deploying $file to $version on Bintray..."
|
|
API=${BINTRAY_API_KEY}
|
|
USER=${BINTRAY_API_USER}
|
|
|
|
curl -X POST -d "{ \"name\": \"$version\", \"released\": \"ISO8601 $(date +%Y-%m-%d'T'%H:%M:%S)\", \"desc\": \"This version...\", \"github_release_notes_file\": \"RELEASE.txt\", \"github_use_tag_release_notes\": true, \"vcs_tag\": \"$version\" }" -u${USER}:${API} https://api.bintray.com/content/lordofhyphens/Slic3r/${SLIC3R_PKG}/versions
|
|
|
|
curl -H "X-Bintray-Package: $SLIC3R_PKG" -H "X-Bintray-Version: $version" -H 'X-Bintray-Publish: 1' -H 'X-Bintray-Override: 1' -T $file -u${USER}:${API} https://api.bintray.com/content/lordofhyphens/Slic3r/$(basename $1)
|
|
echo "Publishing $file..."
|
|
curl -X POST -u${USER}:${API} https://api.bintray.com/content/lordofhyphens/Slic3r/${SLIC3R_PKG}/$version/publish
|
|
|
|
curl -H 'Content-Type: application/json' -X PUT -d "{ \"list_in_downloads\":true }" -u${USER}:${API} https://api.bintray.com/file_metadata/lordofhyphens/Slic3r/$(basename $1)
|