
* Update issue templates * Run unit tests in alphabetical order (#244) * fix: unit tests VIVO-2003 (#245) * updates to outdated urls Co-authored-by: Dragan Ivanovic <chenejac@uns.ac.rs> Co-authored-by: Brian Lowe <brian@ontocale.com> Co-authored-by: Georgy Litvinov <git@litvinovg.pro>
21 lines
569 B
Bash
Executable file
21 lines
569 B
Bash
Executable file
#!/bin/bash
|
|
# RC Script
|
|
|
|
RC_VERSION=1.12.0
|
|
RC_NUM=1
|
|
|
|
git checkout master
|
|
git pull
|
|
git push origin master:rel-${RC_VERSION}-RC
|
|
|
|
|
|
git checkout rel-${RC_VERSION}-RC
|
|
git tag -a "rel-${RC_VERSION}-RC-${RC_NUM}" -m "rel-${RC_VERSION}-RC-${RC_NUM}"
|
|
git push origin --tags
|
|
|
|
|
|
# Created Branch and Tag Examples
|
|
# (Branch) https://github.com/vivo-project/VIVO/tree/rel-1.11.1-RC
|
|
# (Tag) https://github.com/vivo-project/VIVO/tree/rel-1.11.1-RC-1
|
|
# (Branch) https://github.com/vivo-project/Vitro/tree/rel-1.11.1-RC
|
|
# (Tag) https://github.com/vivo-project/Vitro/tree/rel-1.11.1-RC-1
|