Hugo是一个静态网站生成工具,如果每次都要手动编译然后上传着实麻烦,如果能每次编辑完提交之后使用自动化运维自动生成对应的网站,则回非常方便。
travis则提供了这样一个自动化运维的功能,而且对github的开源工程是免费的,和GitHub能较好的集成。
使用travis配置自动化部署需要如下几步:
.travis.yml
下面开始详细叙述。
hugo new site blog
cd blog
git init
git remote add origin git@github.com:m2kar/m2kar.github.io.git
git checkout -b blog
git add .
git commit -m "first commit"
git push -u origin blog
然后在github的项目设置中把blog设置为主分支。
其他细节可以参考: https://mogeko.me/2018/018/ 不再赘述。
.travis.yml
language: go
branches:
only:
- blog # 设置自动化部署的源码分支
- 2-travis-auto-depoly # test for travis
# cache this directory
cache:
directories:
- themes
# - public
#- themes 主题没有更改时可以缓存
before_install:
- export TZ='Asia/Shanghai' # 设置时区
#- npm install -g hexo
#- npm install -g hexo-cli
# 安装依赖组件
install:
- wget https://github.com/gohugoio/hugo/releases/download/v0.51/hugo_0.51_Linux-64bit.tar.gz
- tar -xzvf hugo_0.51_Linux-64bit.tar.gz
- chmod +x hugo
- export PATH=$PATH:$PWD
- hugo version
#- git clone -b ${TRAVIS_BRANCH} --recursive https://github.com/m2kar.github.io.git
#- cd m2kar.github.io
- git log -p -2 | cat
- commit_msg=$(git log -n1 --pretty=format:"%s")
- git clone --recursive -b master https://${GH_APIKEY}@github.com/m2kar/m2kar.github.io.git public
- rm -rf public/*
script:
- hugo -t even
- cp CNAME public/
- pushd public
- git add .
- git commit -m "auto depoly ${commit_msg} "
- git push
- echo "depoly done"
参见: https://github.com/m2kar/m2kar.github.io/blob/blog/.travis.yml
在 https://github.com/settings/tokens 申请一个token,并授予访问public_repo
的权限,记录下来这个token。
blog
分支。配置完成。
在本地进行测试的时候,也需要安装hugo程序。
docker是个非常方便的工具,可以方便进行各种程序的部署安装。
jguyomard/hugo-builder 提供了一个封装完好的hugo工具。
docker run --rm -it -v $PWD:/src -u ${UID}:hugo jguyomard/hugo-builder hugo
docker run --rm -it -v $PWD:/src -u ${UID}:hugo -p 1313:1313 jguyomard/hugo-builder hugo server --bind 0.0.0.0
把下面两行放到.zshrc
文件中
alias hugo="docker run --rm -it -v $PWD:/src -u ${UID}:hugo jguyomard/hugo-builder hugo"
alias hugo-server="docker run --rm -it -v $PWD:/src -u ${UID}:hugo -p 1313:1313 jguyomard/hugo-builder hugo server --bind 0.0.0.0"
执行source ~/.zshrc