Files
esp-box/tools/ci/push_to_github.sh
Li Bo 320ad4fd0e docs: add user getting started
Co-authored-by: Tang Chun Yap
Co-authored-by: Cao Yan
2021-11-18 19:42:25 +08:00

15 lines
305 B
Bash
Executable File

#!/bin/bash
# gitlab-ci script to push current tested revision (tag or branch) to github
set -ex
if [ -n "${CI_COMMIT_TAG}" ]; then
# for tags
git push --force github "${CI_COMMIT_TAG}"
else
# for branches
git push github --force "${CI_COMMIT_SHA}:refs/heads/${CI_COMMIT_REF_NAME}"
fi