2018-09-03 17:41:16 +10:00
|
|
|
# Deploy pages with hexo
|
2020-08-15 17:13:57 +10:00
|
|
|
image: node:14
|
2018-09-03 17:41:16 +10:00
|
|
|
|
|
|
|
pages:
|
|
|
|
stage: deploy
|
|
|
|
|
|
|
|
cache:
|
|
|
|
paths:
|
|
|
|
- node_modules/
|
|
|
|
|
|
|
|
script:
|
|
|
|
- npm install hexo-cli -g
|
|
|
|
- npm install
|
|
|
|
- hexo generate
|
|
|
|
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- public
|
|
|
|
|
|
|
|
only:
|
|
|
|
- pages
|
|
|
|
|
|
|
|
tags:
|
2018-10-25 23:19:25 +11:00
|
|
|
- docker
|
2018-09-03 17:41:16 +10:00
|
|
|
- pages
|