website/.gitlab-ci.yml

40 lines
651 B
YAML
Raw Normal View History

2023-03-19 18:49:43 +00:00
default:
2023-02-14 16:17:01 +00:00
tags:
- website
2023-03-19 18:49:43 +00:00
stages:
- build
- deploy
build:
stage: build
artifacts:
paths:
- build/
script:
- echo "Build"
- npm install
- npm run build
deploy-beta:
stage: deploy
script:
- echo "Deploy to beta server"
- ncftpput -R -u "$ftp_user" -p "$ftp_pass" pls5618.com beta_site build/*
environment:
name: beta
url: http://beta.pls5618.com
only:
- beta
deploy:
2023-02-14 16:16:00 +00:00
stage: deploy
script:
2023-02-14 16:17:36 +00:00
- echo "Deploy to server"
2023-03-19 18:54:26 +00:00
- ncftpput -R -u "$ftp_user" -p "$ftp_pass" pls5618.com /public_html build/*
2023-02-14 16:16:00 +00:00
environment:
name: website
2023-03-19 18:49:43 +00:00
url: http://pls5618.com
only:
- main