mirror of
https://github.com/sobolevn/git-secret
synced 2024-11-08 19:10:31 +00:00
31 lines
853 B
Bash
31 lines
853 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
source "${SECRET_PROJECT_ROOT}/utils/build-utils.sh"
|
||
|
|
||
|
# Variables, which will be used in `bintray.json`:
|
||
|
SCRIPT_VERSION=$(bash ${PWD}/git-secret --version)
|
||
|
RELEASE_DATE=$(date +%Y-%m-%d)
|
||
|
|
||
|
# add `\"override\": 1 \` into the `matrixParams`, if needed:
|
||
|
echo "{ \
|
||
|
\"package\": { \
|
||
|
\"name\": \"git-secret\", \
|
||
|
\"repo\": \"rpm\", \
|
||
|
\"subject\": \"sobolevn\" \
|
||
|
}, \
|
||
|
\"version\": {
|
||
|
\"name\": \"${SCRIPT_VERSION}\", \
|
||
|
\"desc\": \"Version ${SCRIPT_VERSION}\", \
|
||
|
\"released\": \"${RELEASE_DATE}\", \
|
||
|
\"vcs_tag\": \"v${SCRIPT_VERSION}\", \
|
||
|
\"gpgSign\": true \
|
||
|
}, \
|
||
|
\"files\": [{ \
|
||
|
\"includePattern\": \"build/buildroot/(.*\.rpm)\", \
|
||
|
\"uploadPattern\": \"/git-secret-${SCRIPT_VERSION}-1.noarch.rpm\"
|
||
|
}], \
|
||
|
\"publish\": true \
|
||
|
}" > "${SECRET_PROJECT_ROOT}/build/rpm_descriptor.json"
|