mirror of
https://github.com/Mayccoll/Gogh.git
synced 2023-08-10 21:12:46 +03:00
25 lines
489 B
YAML
25 lines
489 B
YAML
name: Generate themes.json
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
run:
|
|
name: Lint with ESLint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: |
|
|
bash tools/generate.sh
|
|
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
|
|
|
|
|