[NOTE] Updated January 2, 2023. This article may have outdated content or subject matter.
從 travis 改成 github action
github action 是一個 github 提供的 CICD 服務。但是我的專案(resume)已經是很久以前寫的,甚至那時還使用 gulp3 撰寫(之後我調整升級成 gulp4 的寫法)
而當時我選用travis ci
作為自動化部屬的服務之一。現在我想說既然在 Github 上不如就把他換成github action 的服務吧!沒想到意外的簡單!讓大家比較一下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
language: node.js
node.js: 14.5
install:
- npm install
- npm install --global [email protected]
- npm install -g [email protected]
- bower install
script:
- gulp
deploy:
skip_cleanup: true
email: [email protected]
name: r567tw
provider: pages
github_token: "$GITHUB_TOKEN"
local_dir: "public"
on:
branch: master
|
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
|
name: Node.js CI
on:
push:
branches:
- master # Set a branch to deploy
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '14.5'
- run: npm install
- run: npm install --global [email protected]
- run: npm install -g [email protected]
- run: bower install
- run: gulp
- name: Push
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: gh-pages # The branch name where you want to push the assets
FOLDER: public # The directory where your assets are generated
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GitHub will automatically add this - you don't need to bother getting a token
MESSAGE: "Build: ({sha}) {msg}" # The commit message
Footer
|
其實我就只是格式換一換,而比較特別的是使用s0/git-publish-subdir-action@develop
這個外部 action 這樣。
小君曰: 我覺得 gihub action 好好玩~