aboutsummaryrefslogtreecommitdiff
path: root/build/publish.sh
diff options
context:
space:
mode:
author0neGal <mail@0negal.com>2023-01-15 20:57:41 +0100
committer0neGal <mail@0negal.com>2023-01-15 20:57:41 +0100
commit84a88c8bdbe2f85e14032f5b9941549fb8553f4c (patch)
tree247586a887f663b78033423ec88e3266914a33c0 /build/publish.sh
parent72c3c54dbf24819072fc38eaf552b5870d6bbe57 (diff)
downloadViper-84a88c8bdbe2f85e14032f5b9941549fb8553f4c.tar.gz
Viper-84a88c8bdbe2f85e14032f5b9941549fb8553f4c.zip
rename build/ to scripts/
Diffstat (limited to 'build/publish.sh')
-rwxr-xr-xbuild/publish.sh41
1 files changed, 0 insertions, 41 deletions
diff --git a/build/publish.sh b/build/publish.sh
deleted file mode 100755
index 042b7c1..0000000
--- a/build/publish.sh
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/sh
-
-VERSION="v$(jq '.version' package.json -r)"
-LOCK1="v$(jq '.version' package-lock.json -r)"
-LOCK2="v$(jq '.packages[""].version' package-lock.json -r)"
-
-REPO="$(jq '.repository.url' package.json -r | sed 's/.*.com\///g')"
-
-REMOTEVERSION="$(curl --silent "https://api.github.com/repos/0neGal/viper/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')"
-
-[ "$REMOTEVERSION" = "$VERSION" ] && {
- echo "A release already exists with the current version number!"
- exit 1
-}
-
-[ "$VERSION" != "$LOCK1" ] && {
- echo "Two seperate version numbers in package.json and package-lock.json"
- echo " $VERSION, $LOCK1"
- exit 1
-}
-
-[ "$LOCK1" != "$LOCK2" ] && {
- echo "Version mismatches in package-lock.json"
- echo " $LOCK1, $LOCK2"
- exit 1
-}
-
-
-node build/langs.js || {
- echo "Please fix localization errors before publishing..."
- exit 1
-}
-
-TOKEN="$GH_TOKEN"
-
-[ "$TOKEN" = "" ] && {
- echo "GH_TOKEN is not set, please type it below:"
- read -p "> " TOKEN
-}
-
-GH_TOKEN="$TOKEN" npm run publish