Mentions légales du service

Skip to content
Snippets Groups Projects
Verified Commit 7430eda0 authored by Philippe Virouleau's avatar Philippe Virouleau
Browse files

CI

parent 89fcb923
Branches
Tags
No related merge requests found
Pipeline #1048687 failed
stages:
- build
- deploy
build-website:
image: node:22
stage: build
# Explicitly set the prefix for the build
variables:
WEBSITE_PREFIX: '/pipeline-creation-assistant'
tags:
- grid5000-docker
script:
- npm install
- npm run build
# Output build is actually in 'out'
- mv out public
artifacts:
paths:
- public
pages:
needs: ['build-website']
image: node:22
tags:
- grid5000-docker
artifacts:
paths:
- public
rules:
# This ensures that only pushes to the default branch will trigger
# a pages deploy
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment