Use git hash rather than date for the GAE app version. (#949)

Co-authored-by: Jason Robbins <jrobbins@chromium.org>
This commit is contained in:
Jason Robbins 2020-08-04 12:55:09 -07:00 коммит произвёл GitHub
Родитель 47ad7bd11e
Коммит e5bf6d4901
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -12,8 +12,8 @@
"lint": "gulp lint-fix && lit-analyzer \"static/elements/chromedash-!(featurelist)*.js\"",
"build": "gulp",
"watch": "gulp watch",
"deploy": "npm run build && ./scripts/deploy_site.sh `date +%Y-%m-%d`",
"staging": "npm run build && ./scripts/deploy_site.sh `date +%Y-%m-%d` cr-status-staging",
"deploy": "npm run build && ./scripts/deploy_site.sh `git describe --always --abbrev=7 --match 'NOT A TAG' --dirty='-tainted'`",
"staging": "npm run build && ./scripts/deploy_site.sh `git describe --always --abbrev=7 --match 'NOT A TAG' --dirty='-tainted'` cr-status-staging",
"start": "npm run build && ./scripts/start_server.sh"
},
"repository": {