Run Analytics & Fatch calendar #766
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: Run Analytics & Fatch calendar | |
on: | |
push: | |
branches: | |
- 蹦蹦 | |
schedule: | |
- cron: "0 0 */1 * *" | |
jobs: | |
Analytics: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: "npm" | |
- name: Install npm packages | |
run: npm install | |
- name: Run Analytics | |
run: node ./analytics/withdrawal.js | |
- name: fetch calendar data | |
run: node ./crawler/fetchCalendar.js | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: dist | |
keep_files: true |