From 9c68a6fdd17ea52dc14f939680579ae5c9c2b65c Mon Sep 17 00:00:00 2001 From: Gervaise Henry <gervaise.henry@utsouthwestern.edu> Date: Sun, 25 Apr 2021 18:34:04 -0500 Subject: [PATCH] Fix indents in ci --- .gitlab-ci.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2c3314e..4f4dd86 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,30 +13,30 @@ stages: build.dev: stage: build_stage script: - - singularity run 'docker://monachus/hugo' hugo --baseURL http://dev.strandlab.net/ + - singularity run 'docker://monachus/hugo' hugo --baseURL http://dev.strandlab.net/ artifacts: paths: - - public/ + - public/ expire_in: 1 week cache: paths: - - public/ + - public/ except: - tags build.live: stage: build_stage script: - - singularity run 'docker://monachus/hugo' hugo + - singularity run 'docker://monachus/hugo' hugo artifacts: paths: - - public/ + - public/ expire_in: 1 week cache: paths: - - public/ + - public/ only: - - tags + - tags test: stage: test_stage @@ -46,17 +46,17 @@ test: deploy.dev: stage: deploy_stage script: - - singularity run 'docker://monachus/hugo' hugo deploy --target aws-dev --maxDeletes -1 + - singularity run 'docker://monachus/hugo' hugo deploy --target aws-dev --maxDeletes -1 dependencies: - - build.dev + - build.dev only: - - master + - master except: - - tags + - tags deploy.live: stage: deploy_stage script: - - singularity run 'docker://monachus/hugo' hugo deploy --target aws --maxDeletes -1 + - singularity run 'docker://monachus/hugo' hugo deploy --target aws --maxDeletes -1 only: - - tags \ No newline at end of file + - tags -- GitLab