Merge pull request #1491 from mikaelacaron/main #72
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'data.json' | |
- '.github/tpl.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "16.x" | |
- name: Build | |
run: node .github/scripts/build.js | |
- name: Commit | |
run: | | |
git config --global user.name 'Shmavon Gazanchyan' | |
git config --global user.email '[email protected]' | |
git commit -am "Update README.md" | |
git push |