Skip to content
Snippets Groups Projects
Commit cfd19cde authored by Jannes Lücht's avatar Jannes Lücht :shark:
Browse files

:construction_worker: Add CD Pipeline

parent 3af6d360
No related branches found
No related tags found
No related merge requests found
Pipeline #240223 failed
stages:
- build
- deploy
build:
stage: build
image: node:20
script:
- npm ci
- npm run build
artifacts:
paths:
- dist/
deploy:
stage: deploy
image: docker:latest
services:
- docker:dind
script:
- docker cp dist/ hai-nginx-1:/usr/share/nginx/html
only:
- main
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment