e94288da31
Using the method from @cemeyer (https://github.com/espressif/esp-idf/pull/3166): find . -name \*.sh -exec sed -i "" -e 's|^#!.*bin/bash|#!/usr/bin/env bash|' {} + Closes https://github.com/espressif/esp-idf/pull/3166.
14 lines
297 B
Bash
Executable file
14 lines
297 B
Bash
Executable file
#!/usr/bin/env 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 github "${CI_COMMIT_TAG}"
|
|
else
|
|
# for branches
|
|
git push github "${CI_COMMIT_SHA}:refs/heads/${CI_COMMIT_REF_NAME}"
|
|
fi
|
|
|