website/.gitlab-ci.yml

37 lines
599 B
YAML
Raw Normal View History

2023-02-20 22:05:48 -05:00
default:
2023-02-14 16:17:01 +00:00
tags:
- website
2023-02-20 22:05:48 -05:00
stages:
- build
- deploy
build:
stage: build
2023-02-14 16:16:00 +00:00
script:
2023-02-20 22:05:48 -05:00
- echo "Build"
2023-02-17 10:30:30 -05:00
- npm install
2023-02-17 10:22:14 -05:00
- npm run build
2023-02-20 22:05:48 -05:00
deploy-beta:
stage: deploy
script:
- echo "Deploy to beta server"
2023-02-17 11:49:19 -05:00
- ncftpput -R -u "$ftp_user" -p "$ftp_pass" pls5618.com beta_site build/*
2023-02-14 16:16:00 +00:00
environment:
2023-02-17 10:22:14 -05:00
name: beta
url: http://beta.pls5618.com
only:
- beta
2023-02-17 10:34:44 -05:00
deploy:
stage: deploy
script:
- echo "Deploy to server"
2023-02-17 11:49:19 -05:00
- ncftpput -R -u "$ftp_user" -p "$ftp_pass" pls5618.com build/*
2023-02-17 10:34:44 -05:00
environment:
2023-02-20 22:05:48 -05:00
name: website
2023-02-17 11:49:19 -05:00
url: http://pls5618.com
2023-02-17 10:34:44 -05:00
only:
- main