44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
# SPDX-FileCopyrightText: 2021-2024 Jeff Epler
|
|
#
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
name: Update DUT1 data
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 10 2 * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update-dut1:
|
|
runs-on: ubuntu-24.04
|
|
if: startswith(github.repository, 'jepler/')
|
|
steps:
|
|
|
|
- name: Dump GitHub context
|
|
env:
|
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
run: echo "$GITHUB_CONTEXT"
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Python 3.10
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.10"
|
|
|
|
- name: Install dependencies
|
|
run: pip install -e .
|
|
|
|
- name: Update DUT1 data
|
|
run: python -m wwvb.updateiers --dist
|
|
|
|
- name: Test
|
|
run: python -munittest
|
|
|
|
- name: Commit updates
|
|
run: |
|
|
git config user.name "${GITHUB_ACTOR} (github actions cron)"
|
|
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
|
|
git remote set-url --push origin https://${GITHUB_ACTOR}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
|
|
if git commit -m"update iersdata" src/wwvb/iersdata.json; then git push origin HEAD:main; fi
|