Update Cruise Tracklines #857
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: Update Cruise Tracklines | |
| on: | |
| schedule: | |
| # Noon UTC is about 5am San Diego time | |
| - cron: "4 12 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| Update-Tracklines: | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| # uv docs suggest using the gh actions to install python is faster | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| # Should just install all the deps | |
| - name: Check and Update CCHDO Tracklines | |
| env: | |
| CCHDO_AUTH_API_KEY: ${{ secrets.CCHDO_AUTH_TOKEN }} | |
| run: | | |
| uv run trackline/__main__.py |