From 65851ffd1aa28d97e5495b25e742e859eed223be Mon Sep 17 00:00:00 2001 From: shockrah Date: Mon, 22 Feb 2021 13:35:27 -0800 Subject: [PATCH] Cleaned up issues with dependandt jobs --- .gitlab-ci.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1157958..c79a405 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,8 @@ image: registry.gitlab.com/pages/hugo:latest stages: - - deploy + - gitlab + - vps variables: @@ -9,7 +10,7 @@ variables: SHOPTS: "-o StrictHostKeyChecking=no" gitlab-pages: - stage: deploy + stage: gitlab script: - hugo artifacts: @@ -19,8 +20,9 @@ gitlab-pages: - master vps: - stage: deploy - needs: gitlab-pages + stage: vps + needs: + - gitlab-pages dependencies: - gitlab-pages @@ -37,4 +39,3 @@ vps: - scp $SHOPTS -r public/ web@shockrah.xyz:/var/www/resume -