2019-11-20 13:23:25 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -o pipefail
|
|
|
|
|
|
|
|
# not a tagged release, abort
|
2019-11-28 18:23:43 -07:00
|
|
|
# [[ "$TRAVIS_TAG" != "$TRAVIS_BRANCH" ]] && exit 0
|
2019-11-20 13:23:25 -07:00
|
|
|
|
2019-11-28 18:23:43 -07:00
|
|
|
mkdir -p .snapcraft
|
2019-11-28 21:51:43 -07:00
|
|
|
# shellcheck disable=SC2154
|
|
|
|
openssl aes-256-cbc -K "$encrypted_ece1c4844832_key" -iv "$encrypted_ece1c4844832_iv" \
|
2019-11-28 18:23:43 -07:00
|
|
|
-in ci/snap/travis_snapcraft.cfg -out .snapcraft/snapcraft.cfg -d
|
2019-11-20 13:23:25 -07:00
|
|
|
|
|
|
|
SNAP=$(find ./ -name "*.snap")
|
|
|
|
|
2019-11-28 18:23:43 -07:00
|
|
|
# TODO(justinmk): This always does `edge` until we enable tagged builds.
|
2019-11-20 13:23:25 -07:00
|
|
|
if [[ "$SNAP" =~ "dirty" || "$SNAP" =~ "nightly" ]]; then
|
|
|
|
snapcraft push "$SNAP" --release edge
|
|
|
|
else
|
|
|
|
snapcraft push "$SNAP" --release candidate
|
|
|
|
fi
|