Download CANSIP Grib2 Files #505
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: Download CANSIP Grib2 Files | |
on: | |
# push: | |
# branches: | |
# - "main" | |
schedule: | |
# job should run at 9.01 pst which translates to 5pm UTC | |
- cron: '1 17 * * *' | |
workflow_dispatch: | |
jobs: | |
dl_cansip_grib2: | |
defaults: | |
run: | |
shell: bash | |
name: 'Download CANSIP Grib2 Files' | |
runs-on: ubuntu-22.04 | |
environment: RUN | |
env: | |
OBJ_STORE_BUCKET: ${{ secrets.OBJ_STORE_BUCKET }} | |
OBJ_STORE_SECRET: ${{ secrets.OBJ_STORE_SECRET }} | |
OBJ_STORE_USER: ${{ secrets.OBJ_STORE_USER }} | |
OBJ_STORE_HOST: ${{ secrets.OBJ_STORE_HOST }} | |
steps: | |
- uses: actions/checkout@v3 | |
id: checkout | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- id: install_dependencies | |
name: install python dependencies | |
shell: bash | |
run: | | |
pip install --upgrade pip | |
pip install -r scripts/requirements.txt | |
- id: debug | |
name: debug and list files | |
shell: bash | |
run: | | |
ls -la | |
- id: download_grib | |
name: download grib files | |
shell: bash | |
run: | | |
python scripts/src/main_cansip.py |