Hoyolab Automation #3
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: Hoyolab Automation | |
on: | |
schedule: | |
- cron: "0 18 * * *" # scheduled at 06:00 (UTC+8) everyday | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '>=12.14.1' | |
- name: Install dependencies | |
run: npm ci | |
- name: EXP Check in to the community and claim reward on Hoyolab site | |
run: node hoyolab.js | |
env: | |
HOYOLAB_COOKIE: ${{ secrets.HOYOLAB_COOKIE }} |