Build #3152
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: [master] | |
pull_request: | |
branches: [master] | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: "*/59 23 * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: npm install | |
- name: Build NoTracking | |
run: npm run notracking | |
- name: Build Chris Paynter | |
run: npm run chrispaynter | |
- name: Commit updates | |
run: | | |
git add -A; | |
git config --global user.email "gitubaction@nowhere.com" | |
git config --global user.name "Github Action" | |
git commit -m "Updated lists"; | |
git push origin master; |