Update Download Stats #1247
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: Update Download Stats | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '33 4 * * *' | |
jobs: | |
generate: | |
name: 'Update Download Stats' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out flow-library repository | |
uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '18' | |
- run: npm install --only=production | |
- name: Run update | |
env: | |
NR_MONGO_URL: ${{ secrets.NR_MONGO_URL }} | |
FLOW_ENV: PRODUCTION | |
run: node ./tasks/update-download-stats.js | |