diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-06-16 16:45:39 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-06-16 16:45:39 +0200 |
commit | d06f6e1398c5dedb3359ff929c5aaf7317c73ce1 (patch) | |
tree | 440fec5e65e769e5bb0d945bc30405283aaae039 | |
parent | da992500f806bb87b06559d920ee12b7680955ee (diff) | |
download | mdir-d06f6e1398c5dedb3359ff929c5aaf7317c73ce1.tar.gz mdir-d06f6e1398c5dedb3359ff929c5aaf7317c73ce1.tar.bz2 mdir-d06f6e1398c5dedb3359ff929c5aaf7317c73ce1.zip |
feat: Add gitlab pipeline
-rw-r--r-- | .gitlab-ci.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..9c8e587 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,23 @@ +docker-build: + image: docker:latest + stage: build + services: + - docker:dind + before_script: + - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY + script: + - | + if [[ "$CI_COMMIT_BRANCH" == "$CI_DEFAULT_BRANCH" ]]; then + tag="" + echo "Running on default branch '$CI_DEFAULT_BRANCH': tag = 'latest'" + else + tag=":$CI_COMMIT_REF_SLUG" + echo "Running on branch '$CI_COMMIT_BRANCH': tag = $tag" + fi + - docker build --pull -t "$CI_REGISTRY_IMAGE${tag}" . + - docker push "$CI_REGISTRY_IMAGE${tag}" + + rules: + - if: $CI_COMMIT_BRANCH + exists: + - Dockerfile |