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

39 lines
908 B
YAML
Raw Normal View History

2020-05-04 07:18:09 +08:00
name: dev
on:
push:
branches:
2020-05-04 07:18:09 +08:00
- 'dev'
2020-05-09 21:17:14 +08:00
paths-ignore:
- '**.md'
jobs:
prune:
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
npm run format
npm run build
-
name: Set up Git
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
-
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-04-09 06:59:11 +08:00
git commit -m 'Update generated content'
2019-10-16 20:43:41 +08:00
git push
fi