mirror of
https://github.com/qlik-oss/PLSmartPivot.git
synced 2025-12-19 10:17:24 -05:00
-Part of the work to streamline how the extensions are handled, irregardless of what bundle. Issue: DEB-130, DEB-133
11 lines
337 B
Bash
Executable File
11 lines
337 B
Bash
Executable File
#!/bin/bash
|
|
set -o errexit
|
|
|
|
echo "Creating release for version: $VERSION"
|
|
echo "Artifact name: ./dist/${3}_${VERSION}.zip"
|
|
$HOME/bin/ghr -t ${ghoauth} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} ${VERSION} "./dist/${3}_${4}.zip"
|
|
|
|
|
|
# Usage
|
|
# $ create-release.sh qlik-oss qsSimpleKPI qlik-multi-kpi 0.3.1
|