website/.gitlab-ci.yml

30 lines
563 B
YAML
Raw Normal View History

2023-02-17 10:22:14 -05:00
deploy-beta:
2023-02-14 16:17:01 +00:00
tags:
- website
2023-02-14 16:16:00 +00:00
stage: deploy
script:
2023-02-17 10:22:14 -05:00
- echo "Deploy to beta server"
2023-02-17 10:30:30 -05:00
- npm install
2023-02-17 10:22:14 -05:00
- npm run build
- ncftpput -R -u $ftp_user -p $ftp_pass pls5618.com beta 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
except:
- main
2023-02-17 10:34:44 -05:00
deploy:
tags:
- website
stage: deploy
script:
- echo "Deploy to server"
- npm install
- npm run build
- ncftpput -R -u $ftp_user -p $ftp_pass pls5618.com beta build/*
environment:
name: beta
url: http://beta.pls5618.com
only:
- main