iKuuu Daily Checkin #253
This file contains hidden or 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: iKuuu Daily Checkin | |
on: | |
# run automatically every 24 hours | |
schedule: | |
- cron: "0 */24 * * *" | |
# allows to manually run the job at any time | |
workflow_dispatch: | |
jobs: | |
checkin: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Run checkin script | |
env: | |
IKUUU_ACCOUNTS: ${{ secrets.IKUUU_ACCOUNTS }} | |
IKUUU_API_PATH: ${{ secrets.IKUUU_API_PATH }} | |
run: node checkin.js |