2018-09-03 07:41:16 +00:00
|
|
|
# Deploy pages with hexo
|
2020-08-15 07:13:57 +00:00
|
|
|
image: node:14
|
2018-09-03 07:41:16 +00: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 12:19:25 +00:00
|
|
|
- docker
|
2018-09-03 07:41:16 +00:00
|
|
|
- pages
|