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

42 lines
1.0 KiB
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'
jobs:
prune:
runs-on: ubuntu-latest
steps:
-
2019-10-23 16:23:44 +08:00
# https://github.com/actions/checkout
name: Checkout
uses: actions/checkout@v1
-
# https://github.com/actions/checkout/issues/6
name: Fix detached HEAD
run: git checkout ${GITHUB_REF#refs/heads/}
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