完成目標#
- notion 文章轉化為 markdown 格式
- 在 notion 上寫博客
- 發布 notion 文章到 hexo
項目起源#
- 初代:項目由@Mo Huishou 最初創建使用,但只支持阿里雲圖床,且不支持文章修改。
- 目前:由@Doradx 大佬改造後支持多種圖床,且支持文章修改
項目教程#
我的個人流程#
上面的教程已經夠完整了,但是我喜歡自己寫一寫自己在這個過程中自己操作上的失誤,可以選擇性瀏覽。
- 打開下面鏈接創建一個 notion 機器人,獲取
Secrets
。
- 複製模板blog-template。
- 授權數據庫,打開複製過的模板,點擊右上角三個點,點擊下面的添加 connection,加上剛剛的機器人。
- 在博客倉庫
settings/secrets/actions
中添加環境變量,分別是NOTION_DATABASE_ID
,NOTION_TOKEN
和PICBED_CONFIG
。下面是大佬的原文:
- 在博客中目錄
.github/workflows
新建deploy.yml
和notion_sync.yml
這兩個我的代碼如下:
name: Automatic deployment
on:
push:
branches: master
paths:
- "source/**"
- "**.yml"
workflow_dispatch:
workflow_call:
env:
GIT_USER: wangyunzi
GIT_EMAIL: xueq695@gmail.com
jobs:
build:
name: Ubuntu and node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
node_version: [16.19.1]
steps:
- name: Checkout blog and theme
uses: actions/checkout@v3
with:
submodules: "recursive"
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- name: Install dependencies
run: |
git pull
- name: Depoly
run: |
git ls-files -z | while read -d '' path; do touch -d "$(git log -1 --format="@%ct" "$path")" "$path"; done
npm install
npx hexo clean
npx hexo douban
npx hexo g
- name: Commit & Push
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Automatic deployment.
name: Automatic sync pages from notion
on:
# push:
# branches: master
workflow_dispatch:
schedule:
- cron: "5 */1 * * *"
jobs:
notionSyncTask:
name: Ubuntu and node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
node_version: [16.x]
outputs:
HAS_CHANGES: ${{ steps.checkStep.outputs.HAS_CHANGES }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- name: Convert notion to markdown
uses: Doradx/notion2markdown-action@latest
with:
notion_secret: ${{ secrets.NOTION_TOKEN }} # NOTION授權碼
database_id: ${{ secrets.NOTION_DATABASE_ID }} # Dataset ID
migrate_image: true
picBedConfig: ${{ secrets.PICBED_CONFIG}} # picBed的配置,JSON格式,建議為minify JSON, 否則可能報錯. 不同圖床的配置可參考:https://picgo.github.io/PicGo-Core-Doc/zh/guide/config.html#picbed
page_output_dir: "source" # page 類文章的輸出目錄,例如about。
post_output_dir: "source/_posts/notion" # post 的輸出目錄,切記當clean_unpublished_post為true時,勿設置為 'source/_posts', 可能會刪除你原目錄下的文章!!!
clean_unpublished_post: true # 是否清除未發表的文章,例如之前發表了,你又在notion中給移到草稿箱了.
- name: Check if there is anything changed
id: checkStep
run: |
if [[ -n "$(git status --porcelain)" ]]; then
echo "HAS_CHANGES=true" >> $GITHUB_OUTPUT;
echo "Updates available & redeployment required."
else
echo "HAS_CHANGES=false" >> $GITHUB_OUTPUT;
echo "Nothing to commit & deploy."
fi
- name: Commit & Push
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Automatic sync from notion.
callDepolyTask:
name: Call the depoly workflow
needs: notionSyncTask
if: ${{ needs.notionSyncTask.outputs.HAS_CHANGES=='true' }}
uses: wangyunzi/Annie/.github/workflows/hexo_deploy.yml@master # 根據自身Github地址修改即可
- 檢查上面兩個代碼的
node
版本,改成和自己一樣的即可。(ps: 沒有改的話就會出現一點小問題,例如我) - 需要發表的文章放置在待發布這一欄,如果需要及時看到效果手動運行 action,源代碼默認是 1 個小時檢查一次是否有文章需要發布。
這次能夠完美完成完全是依靠@Doradx大佬的傾情幫助,寫這篇文章不僅是感謝他改造這樣便捷的項目,也是為了感謝大佬的不辭辛苦,一遍遍的指導我完成這些配置。