ghaction-github-pages/.github/workflows/ncc.yml

43 lines
1.0 KiB
YAML
Raw Normal View History

2020-05-14 10:06:45 +08:00
name: ncc
on:
2020-05-14 10:06:45 +08:00
repository_dispatch:
types:
2020-05-24 07:13:31 +08:00
- ncc
push:
branches:
2020-05-24 07:13:31 +08:00
- dev
- releases/v*
2020-05-09 21:17:14 +08:00
paths-ignore:
- '**.md'
jobs:
2020-05-14 10:06:45 +08:00
ncc:
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
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
-
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
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
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