Skip to content

Pull Cataclysm-DDA data #2815

Pull Cataclysm-DDA data

Pull Cataclysm-DDA data #2815

Workflow file for this run

name: Pull Cataclysm-DDA data
on:
schedule:
- cron: '40 */12 * * *'
workflow_dispatch: {}
jobs:
pull-data:
name: Pull Cataclysm-DDA data
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '20.x'
- run: yarn
- uses: actions/github-script@v7
with:
script: |
const { default: run } = await import('${{ github.workspace }}/pull-data.mjs')
await run({ github, context })