docs/.gitlab-ci.yml

29 lines
483 B
YAML
Raw Permalink Normal View History

2023-03-23 16:35:21 +00:00
default:
2023-09-27 20:09:58 +00:00
image: node:latest
2023-03-23 16:35:21 +00:00
tags:
2023-09-27 20:09:58 +00:00
- node
2023-03-23 16:35:21 +00:00
stages:
- build
- deploy
build:
stage: build
artifacts:
paths:
2023-09-02 14:53:45 -04:00
- dist/
2023-03-23 16:35:21 +00:00
script:
2023-09-27 19:59:53 +00:00
- npm install
2023-03-23 16:35:21 +00:00
- npm run build
deploy:
stage: deploy
2023-09-27 20:13:22 +00:00
before_script:
- apt-get update
2023-09-27 20:09:58 +00:00
- apt-get install ncftp
2023-09-27 20:13:22 +00:00
script:
2023-09-02 14:53:45 -04:00
- ncftpput -R -u "$ftp_user" -p "$ftp_pass" pls5618.com docs dist/*
2023-03-23 16:35:21 +00:00
environment:
name: docs
2023-09-02 14:45:26 -04:00
url: https://docs.pls5618.com