Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit 8654eb51 authored by LENIX.IO's avatar LENIX.IO
Browse files

Merge branch 'main' into 'master'

added gitlab-ci file

See merge request froggit_data/customers/paid/cus_OdXMjb9CsSkWOk/lenix-io-website!1
parents 741134db 86054b30
No related branches found
No related tags found
1 merge request!1added gitlab-ci file
Pipeline #50503 passed
image: node:16
stages:
- build
- deploy
cache:
paths:
- node_modules/
before_script:
- npm install
build:
stage: build
script:
- npm run build # Vite génère les fichiers dans le dossier "dist"
artifacts:
paths:
- dist/ # Spécifie le répertoire généré par Vite
expire_in: 1 week
pages:
stage: deploy
script:
- mv dist public # Déplace "dist" vers "public", exigé par GitLab Pages
artifacts:
paths:
- public # GitLab Pages s'attend à un dossier "public"
only:
- main
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment