Skip to content

Commit

Permalink
don't care about artifacts in RC releases
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfantom authored Dec 20, 2018
1 parent c6760d8 commit 7516650
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .travis/releaser.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,6 @@ if [ "${GIT_TAG}" != "$(git tag --points-at)" ]; then
echo "ERROR! Current commit is not tagged. Stopping release creation."
exit 1
fi
if [ -z ${RC+x} ]; then
hub release create --prerelease --draft -a "netdata-${GIT_TAG}.tar.gz" -a "netdata-${GIT_TAG}.gz.run" -a "sha256sums.txt" -m "${GIT_TAG}" "${GIT_TAG}"
else
if [ ! -z ${RC+x} ]; then
hub release create --draft -a "netdata-${GIT_TAG}.tar.gz" -a "netdata-${GIT_TAG}.gz.run" -a "sha256sums.txt" -m "${GIT_TAG}" "${GIT_TAG}"
fi

0 comments on commit 7516650

Please sign in to comment.