From 4ff23f0ebb248aae8c620a915cb4ec92e6a6d756 Mon Sep 17 00:00:00 2001 From: Sumner Date: Wed, 22 Dec 2021 23:46:38 +0000 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4117481..091e157 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,3 +1,4 @@ +image: alpine:latest # This file is a template, and might need editing before it works on your project. # To contribute improvements to CI/CD templates, please follow the Development guide at: # https://docs.gitlab.com/ee/development/cicd/templates.html @@ -5,13 +6,14 @@ # https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Pages/HTML.gitlab-ci.yml # Full project: https://gitlab.com/pages/plain-html -image: alpine:latest + pages: - stage: deploy + stage: deploy + script: + - echo 'Nothing to do...' artifacts: paths: - - html/lrng + - html/lrng rules: - - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH - + - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH -- GitLab