Github Actions

生成 SSH Key

1
ssh-keygen -t rsa -b 4096 -C "emal@gmail.com"

添加 Key 到 GitHub

公钥

仓库 –> Secrets –> Actions –> New repository secert

Name: HEXO_DEPLOY_KEY
Value: id_rsa.pub 的值

私钥

仓库 –> Settings –> Deploy keys –> Add deploy key

Name: HEXO_DEPLOY_PUB
Value: id_rsa 的值

使用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Hexo Deploy

on:
push:
branches:
- source

jobs:
build:
runs-on: ubuntu-latest
name: auto deploy

steps:
- name: Setup Node.js 12.x
uses: actions/setup-node@master
with:
node-version: "12.x"

- name: Checkout Repository source branch
uses: actions/checkout@v2
with:
ref: source

- name: Generate Public Files
run: |
npm i
npm install hexo-cli -g
hexo clean && hexo generate

- name: Deploy Hexo
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.HEXO_DEPLOY_KEY }}
external_repository: ivitan/ivitan.github.io
publish_branch: master
publish_dir: ./public
commit_message: ${{ github.event.head_commit.message }}
user_name: 'Vitan'
user_email: 'vitan.me@gmail.com'

本站由 VITAN 使用 Stellar 主题创建。
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议,转载请注明出处。