Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 887 Bytes

DEPLOYMENT.md

File metadata and controls

17 lines (16 loc) · 887 Bytes

Deploying

Setting up GitHub Actions

  • Fork this repository
  • Go to Settings > Secrets and variables > Actions > New repository secret
  • Create a variable named ENV_FILE and paste the contents of .env.example in the value field
  • Fill out the required tokens in .env
  • Change the config files in config/ as required
  • Change the workflow files in .github/workflows/ to add the cron schedule you want like:
    • For daily updates: 0 0 * * *, for weekly updates: 0 0 * * 0
      on:
        schedule:
          - cron: '0 0 * * *'