From 61e793e618defc6891fd1d79d5ce29c7d90fd498 Mon Sep 17 00:00:00 2001 From: Paul Cancel <paul.cancel.etu@univ-lille.fr> Date: Sun, 10 Dec 2023 12:44:34 +0100 Subject: [PATCH] Add .gitlab-ci.yml --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..6dd4fa1 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,12 @@ +# The Docker image that will be used to build your app +image: portfolio + +pages: + stages: deploy + script: + - echo "The site will be deploy to $CI_PAGES_URL" + artifacts: + paths: + - portfolio + rules: + - if $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH -- GitLab