2020-05-14 10:06:45 +08:00
|
|
|
name: ncc
|
2019-10-16 17:47:51 +08:00
|
|
|
|
|
|
|
on:
|
2020-05-14 10:06:45 +08:00
|
|
|
repository_dispatch:
|
|
|
|
types:
|
|
|
|
- 'ncc'
|
2019-10-16 17:47:51 +08:00
|
|
|
push:
|
|
|
|
branches:
|
2020-05-04 07:18:09 +08:00
|
|
|
- 'dev'
|
2020-05-09 21:17:14 +08:00
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
2019-10-16 17:47:51 +08:00
|
|
|
|
|
|
|
jobs:
|
2020-05-14 10:06:45 +08:00
|
|
|
ncc:
|
2019-10-16 17:47:51 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-05-07 02:54:24 +08:00
|
|
|
uses: actions/checkout@v2
|
2019-10-23 16:06:29 +08:00
|
|
|
-
|
2020-04-09 06:59:11 +08:00
|
|
|
name: Build
|
2019-10-16 17:47:51 +08:00
|
|
|
run: |
|
2020-04-09 06:59:11 +08:00
|
|
|
npm install
|
2020-05-13 20:28:17 +08:00
|
|
|
npm run format
|
2020-04-09 06:59:11 +08:00
|
|
|
npm run build
|
2019-10-16 17:47:51 +08:00
|
|
|
-
|
|
|
|
name: Set up Git
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
run: |
|
2020-05-13 20:26:42 +08:00
|
|
|
git config user.name GitHub
|
|
|
|
git config user.email noreply@github.com
|
2019-10-16 17:47:51 +08:00
|
|
|
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
|
2020-05-14 10:06:45 +08:00
|
|
|
-
|
|
|
|
name: Commit and push changes
|
2019-10-16 17:47:51 +08:00
|
|
|
run: |
|
2019-10-16 20:43:41 +08:00
|
|
|
git add .
|
|
|
|
if output=$(git status --porcelain) && [ ! -z "$output" ]; then
|
2020-05-13 20:26:42 +08:00
|
|
|
git commit --author "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>" --message "Update generated content"
|
2019-10-16 20:43:41 +08:00
|
|
|
git push
|
|
|
|
fi
|