gitlab deployment
This commit is contained in:
parent
429d0d59a9
commit
d226e1dd84
16
.gitlab-ci.yml
Normal file
16
.gitlab-ci.yml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
|
||||||
|
pages: # the job must be named pages
|
||||||
|
image: node:latest
|
||||||
|
stage: deploy
|
||||||
|
script:
|
||||||
|
- npm ci
|
||||||
|
- npm run build
|
||||||
|
- mv public public-vue # GitLab Pages hooks on the public folder
|
||||||
|
- mv dist public # rename the dist folder (result of npm run build)
|
||||||
|
# optionally, you can activate gzip support wih the following line:
|
||||||
|
- find public -type f -regex '.*\.\(htm\|html\|txt\|text\|js\|css\)$' -exec gzip -f -k {} \;
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- public # artifact path must be /public for GitLab Pages to pick it up
|
||||||
|
only:
|
||||||
|
- master
|
@ -1,5 +1,8 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
"transpileDependencies": [
|
"transpileDependencies": [
|
||||||
"vuetify"
|
"vuetify"
|
||||||
]
|
],
|
||||||
|
publicPath: process.env.NODE_ENV === 'production'
|
||||||
|
? '/' + process.env.CI_PROJECT_NAME + '/'
|
||||||
|
: '/'
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user