Daily GEFS Data Download #127
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: Daily GEFS Data Download | |
on: | |
schedule: | |
- cron: "0 0 * * *" # This schedule runs the workflow daily at midnight UTC | |
workflow_dispatch: | |
branches: | |
- main | |
jobs: | |
run_download_script: | |
runs-on: ubuntu-latest | |
container: | |
image: eco4cast/rocker-neon4cast | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: List contents of data directory | |
run: ls | |
- name: Run | |
run: | | |
# Fetch data for the new period | |
Rscript Data_Download_Functions/GEFS_download.R |