Skip to content
Snippets Groups Projects
Verified Commit 111b75cc authored by Laurent Heirendt's avatar Laurent Heirendt :airplane:
Browse files

fix if

parent 6989ff55
No related branches found
No related tags found
No related merge requests found
...@@ -27,11 +27,11 @@ production: ...@@ -27,11 +27,11 @@ production:
before_script: before_script:
# define the branch # define the branch
- if [[ $CI_COMMIT_BRANCH == "develop" ]]; then - if [[ $CI_COMMIT_BRANCH == "develop" ]]; then
version="latest" version="latest";
elif [[ $CI_COMMIT_BRANCH == "master" ]]; then elif [[ $CI_COMMIT_BRANCH == "master" ]]; then
version="stable" version="stable";
else else
version="unstable" version="unstable";
fi fi
- 'which ssh-agent || ( apk add --update openssh )' - 'which ssh-agent || ( apk add --update openssh )'
- eval $(ssh-agent -s) - eval $(ssh-agent -s)
......
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