Skip to content

bundling

bundling #39

Workflow file for this run

# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
schedule:
- cron: '0 1 * * *'
workflow_dispatch:
name: bundling
jobs:
forecasts:
runs-on: arc-runner-set
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
OSN_KEY: ${{ secrets.OSN_KEY }}
OSN_SECRET: ${{ secrets.OSN_SECRET }}
container: eco4cast/rocker-neon4cast:latest
steps:
- uses: actions/checkout@v4
- name: Install
shell: Rscript {0}
run: |
remotes::install_deps(".", dep=TRUE, upgrade=FALSE)
- name: Bundle forecasts
shell: Rscript {0}
run: |
source("scoring/bundled-forecasts.R")
- name: Bundle summaries
shell: Rscript {0}
run: |
source("scoring/bundled-summaries.R")