diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8d2fd08..baf4432 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,6 +10,7 @@ build: upload: stage: upload + needs: ["build"] script: - docker push luki42/latex-full:latest @@ -19,3 +20,10 @@ build_full: - cd static - docker build --no-cache -t luki42/latex-full:static . when: manual + +upload_full: + stage: upload + needs: ["build_full"] + script: + - docker push luki42/latex-full:static +