quote_generator #568
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: quote_generator | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "00 00 * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 12.21.0 | |
- run: npm ci | |
- name: Generate quote | |
run: npm run generate | |
- name: Update README.md | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "dinhphuc" | |
git add . | |
git commit -m "Updated README.md" || echo "Random Quote to commit" | |
git push |