Add Missing Cruise Sumfiles #990
This file contains hidden or 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: Add Missing Cruise Sumfiles | |
| on: | |
| schedule: | |
| # Noon UTC is about 5am San Diego time | |
| - cron: "10 12 * * *" | |
| workflow_dispatch: | |
| env: | |
| COLUMNS: 120 | |
| jobs: | |
| Update-Sumfiles: | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12' | |
| - name: Check and Add CCHDO Sumfiles | |
| env: | |
| CCHDO_AUTH_API_KEY: ${{ secrets.CCHDO_AUTH_TOKEN }} | |
| run: | | |
| echo "::group::Install Dependencies" | |
| uv run sumfile_update/__main__.py |