X-Git-Url: https://git.r.bdr.sh/rbdr/r.bdr.sh/blobdiff_plain/96fa45d2a28a2bc75aeac3cba5cdab86ac4f4d22..8355fe94b01aeb4ff411def5bb50d1c595fa96f9:/.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