Fetch News #48
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: Fetch News | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
fetch-news: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
working-directory: automation-scripts/News | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18.16.1" | |
- name: Install Yarn | |
run: | | |
corepack enable | |
corepack prepare yarn@stable --activate | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Run | |
env: | |
NEWS_API_KEY: ${{ secrets.NEWS_API_KEY }} | |
run: yarn start | |
- name: Move news.json | |
run: |- | |
git add news.json | |
git mv -f news.json ../../ui/public/news.json | |
- name: Commit and push if changed | |
run: |- | |
git config --global user.email "actions@github.com" | |
git config --global user.name "GitHub Actions" | |
git commit -m "Update news.json" || true | |
git push |