Gogh/.github/workflows/actions.yml

19 lines
431 B
YAML
Raw Normal View History

2021-01-23 19:40:50 +03:00
name: Generate themes.json
2021-01-24 01:32:19 +03:00
on: [workflow_dispatch]
2021-01-23 19:40:50 +03:00
jobs:
run:
name: Lint with ESLint
runs-on: ubuntu-latest
steps:
2021-01-23 19:44:30 +03:00
- uses: actions/checkout@v2
- run: |
2021-01-23 19:47:09 +03:00
bash tools/generate.sh
2021-01-23 19:44:30 +03:00
git config user.name github-actions[bot]
git config user.email github-actions[bot]@github.com
git add .
git commit -m "------- Generate themes.json -------"
git push
2021-01-23 19:40:50 +03:00