2021-11-03 04:51:04 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
gpush patch "New release"
|
|
|
|
description=$1
|
|
|
|
latest_tag=$(git describe --abbrev=0)
|
2021-12-27 16:18:48 +00:00
|
|
|
grel release -u i5ik -r 22120 --tag $latest_tag --name "New release" --description '"'"$description"'"'
|
2021-12-27 16:27:17 +00:00
|
|
|
grel upload -u i5ik -r 22120 --tag $latest_tag --name "exlibris-win.exe" --file bin/exlibris-win.exe
|
|
|
|
grel upload -u i5ik -r 22120 --tag $latest_tag --name "exlibris-linux" --file bin/exlibris-linux
|
|
|
|
grel upload -u i5ik -r 22120 --tag $latest_tag --name "exlibris-macos" --file bin/exlibris-macos
|
2021-11-03 04:51:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
|