/
githubmirror
/
commcare-hq
Обзор
Документация
Войти
/
githubmirror
/
commcare-hq
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
scripts/last_deploy.sh
15 строк
308 B
Jennifer Schweers
Updated last_deploy script to handle icds-staging [ci skip]
15 июл 2020, 23:56
15 июл 2020, 23:56
c678651
Код
Авторство
О чём код?
#!/bin/bash # run as # scripts/last_deploy.sh # or as # scripts/last_deploy.sh icds pna if [ $# != 0 ]; then ENVS=$@ else ENVS=(icds-staging staging production india swiss icds pna) fi for i in ${ENVS[@]}; do git tag | grep deploy | grep "[0-9]\-${i}-deploy" | grep -v hot_fix | tail -n 1 done