ghaction-upx/.github/workflows/master.yml

38 lines
965 B
YAML
Raw Normal View History

2020-01-08 14:30:38 -07:00
name: master
on:
push:
branches:
2020-05-13 06:30:05 -06:00
- 'master'
paths-ignore:
- '**.md'
2020-01-08 14:30:38 -07:00
jobs:
prune:
runs-on: ubuntu-latest
steps:
-
name: Checkout
2020-05-06 13:14:42 -06:00
uses: actions/checkout@v2
2020-01-08 14:30:38 -07:00
-
2020-04-08 18:32:42 -06:00
name: Build
2020-01-08 14:30:38 -07:00
run: |
2020-04-08 18:32:42 -06:00
npm install
npm run format
npm run build
2020-01-08 14:30:38 -07:00
-
name: Set up Git
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
2020-05-13 06:30:05 -06:00
git config user.name GitHub
git config user.email noreply@github.com
2020-01-08 14:30:38 -07:00
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
2020-05-13 06:30:05 -06:00
- name: Commit and push changes
2020-01-08 14:30:38 -07:00
run: |
git add .
if output=$(git status --porcelain) && [ ! -z "$output" ]; then
2020-05-13 06:30:05 -06:00
git commit --author "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>" --message "Update generated content"
2020-01-08 14:30:38 -07:00
git push
fi