在 Hexo 部落格使用 npm 腳本執行發布與推送

做法

修改 package.json 檔:

1
2
3
4
5
6
7
{
// ...
"scripts": {
"build": "hexo deploy --generate && git add . && git commit -m"
},
// ...
}

發布與推送

1
2
3
npm run build -- "新增文章"
> hexo deploy --generate && git add . && git commit -m "新增文章"
git push