From d9df13c378a75e88d8e6943014e178f00eaf55ed Mon Sep 17 00:00:00 2001 From: Hwanyong Lee <hwan@ajou.ac.kr> Date: Mon, 27 May 2024 15:59:08 +0900 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9f1699a..7110e99 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,14 +1,13 @@ -# This file is a template, and might need editing before it works on your project. -# Full project: https://gitlab.com/pages/plain-html - -image: busybox +image: alpine:latest pages: stage: deploy script: - - echo "The site will be deployed to $CI_PAGES_URL" + - echo 'Nothing to do...' artifacts: paths: - - public - rules: - - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH + - public + only: + - master + tags: + - pages -- GitLab