X-Git-Url: https://git.r.bdr.sh/rbdr/r.bdr.sh/blobdiff_plain/e109f04e04f77ffe0d56a8737fc04d7df925b882..c621f1a0b8bc4aee178d0dff2d32a815a4e55491:/.gitlab-ci.yml?ds=sidebyside diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a508549..de5cd1a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,8 +1,19 @@ +image: docker/compose:alpine-1.29.2 + +services: + - docker:dind + +before_script: + - apk add build-base + - touch .env + stages: - upload upload: stage: upload + tags: + - docker except: refs: - main @@ -11,9 +22,11 @@ upload: upload_production: stage: upload + tags: + - docker only: refs: - main environment: production script: - - make upload + - make environment=production upload