GitLab CI: deploy to pages on develop branch

This commit is contained in:
Alex Gleason 2021-08-21 23:48:29 -05:00
parent d81c31ce63
commit 3d008e46a9
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -60,3 +60,16 @@ docs-deploy:
# before_script:
# - yarn
# - yarn build
pages:
stage: deploy
script:
- yarn build
- mv static public
variables:
NODE_ENV: production
artifacts:
paths:
- public
only:
- develop