Skip to content
Snippets Groups Projects
Commit ff3dcf0f authored by Ralf Jung's avatar Ralf Jung
Browse files

establish 'ci-release' as magic ad-hoc release branch

parent 3a390abd
No related branches found
No related tags found
No related merge requests found
...@@ -114,8 +114,8 @@ if [[ "$CI_RUNNER_DESCRIPTION" == "coop-timing" && -n "$CI_COMMIT_BRANCH" ]]; th ...@@ -114,8 +114,8 @@ if [[ "$CI_RUNNER_DESCRIPTION" == "coop-timing" && -n "$CI_COMMIT_BRANCH" ]]; th
--data-binary @- < build-times.txt --data-binary @- < build-times.txt
fi fi
# maybe create opam package # Maybe create opam package -- only for master branches, and the magic `ci-release` branch.
if [[ -n "$OPAM_PKG" && "$CI_COMMIT_BRANCH" == "master" ]]; then if [[ -n "$OPAM_PKG" && ( "$CI_COMMIT_BRANCH" == "master" || "$CI_COMMIT_BRANCH" == "ci-release" ) ]]; then
# check if we have the secret # check if we have the secret
if [[ -z "$OPAM_UPDATE_SECRET" ]]; then if [[ -z "$OPAM_UPDATE_SECRET" ]]; then
panic "[buildjob] OPAM_UPDATE_SECRET variable is missing" panic "[buildjob] OPAM_UPDATE_SECRET variable is missing"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment