Add build:production to gitlab-ci

This commit is contained in:
Alex Gleason 2020-04-14 13:20:07 -05:00
parent 5907b60117
commit 5cf3affcd8
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -26,6 +26,17 @@ i18n:
build-development:
stage: build
script: yarn build:development
variables:
NODE_ENV: development
artifacts:
paths:
- public/packs
build-production:
stage: build
script: yarn build:production
variables:
NODE_ENV: production
artifacts:
paths:
- public/packs