Skip to content
This repository has been archived by the owner on Feb 26, 2020. It is now read-only.

[BETA] Bump 0.3 to beta #169

Merged
merged 2 commits into from
Jul 12, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"Parity"
],
"parity": {
"channel": "nightly"
"channel": "beta"
},
"scripts": {
"build": "npm run build:inject && npm run build:app && npm run build:electron && npm run build:embed",
Expand Down
6 changes: 3 additions & 3 deletions scripts/publish-snap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ set -e # fail on any error
set -u # treat unset variables as error

case ${CI_COMMIT_REF_NAME} in
master|ci-package|v0.3*) export CHANNEL="edge";;
v0.2*) export CHANNEL="beta";;
v0.1*) export CHANNEL="stable";;
master|ci-package|v0.4*) export CHANNEL="edge";;
v0.3*) export CHANNEL="beta";;
v0.2*) export CHANNEL="stable";;
*) echo "No release" exit 0;;
esac
echo "Release channel :" $CHANNEL " Branch/tag: " $CI_COMMIT_REF_NAME
Expand Down