Skip to content
Snippets Groups Projects
Commit 9fc48299 authored by Jeremy M Fee's avatar Jeremy M Fee
Browse files

Update deploy-library template

parent 37242455
No related branches found
No related tags found
1 merge request!178Pipeline updates
......@@ -76,9 +76,15 @@ workflow:
git clone "${CI_REPOSITORY_URL}" "$(basename "${APP_DEPLOY_DIR}")";
fi
- cd "${APP_DEPLOY_DIR}";
# fetch tags so checkout doesn't create a branch
- git fetch --tags;
# switch to requested tag/branch
- git checkout "${CI_COMMIT_REF_NAME}" || git checkout -b "${CI_COMMIT_REF_NAME}";
- git pull --ff-only "${CI_REPOSITORY_URL}" "${CI_COMMIT_REF_NAME}";
# pull updates if on a branch
- |
if ! git status | grep -q detached ; then
git pull --ff-only "${CI_REPOSITORY_URL}" "${CI_COMMIT_REF_NAME}";
fi
stage: deploy
tags:
- deploy
......
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