X-Git-Url: https://git.r.bdr.sh/rbdr/r.bdr.sh/blobdiff_plain/96fa45d2a28a2bc75aeac3cba5cdab86ac4f4d22..16b093a0366e1ce2be6f32d2725bc226c8c95ef4:/.gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c8e8ac1..de5cd1a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,17 +1,32 @@ +image: docker/compose:alpine-1.29.2 + +services: + - docker:dind + +before_script: + - apk add build-base + - touch .env + stages: - upload upload: stage: upload - except:refs: - - main + tags: + - docker + except: + refs: + - main script: - make upload upload_production: stage: upload - only:refs: - - main + tags: + - docker + only: + refs: + - main environment: production script: - - make upload + - make environment=production upload