2021-11-03 04:51:04 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2022-01-01 21:38:33 +00:00
|
|
|
./scripts/compile.sh
|
2021-11-03 04:51:04 +00:00
|
|
|
description=$1
|
|
|
|
latest_tag=$(git describe --abbrev=0)
|
2022-01-01 21:22:10 +00:00
|
|
|
npm version $latest_tag
|
|
|
|
gpush patch "$description"
|
2021-12-27 16:18:48 +00:00
|
|
|
grel release -u i5ik -r 22120 --tag $latest_tag --name "New release" --description '"'"$description"'"'
|
2021-12-29 17:21:03 +00:00
|
|
|
grel upload -u i5ik -r 22120 --tag $latest_tag --name "archivist1-win.exe" --file bin/archivist1-win.exe
|
|
|
|
grel upload -u i5ik -r 22120 --tag $latest_tag --name "archivist1-linux" --file bin/archivist1-linux
|
|
|
|
grel upload -u i5ik -r 22120 --tag $latest_tag --name "archivist1-macos" --file bin/archivist1-macos
|
2021-11-03 04:51:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
|