From 8eef92aa4623050a507298baeafb67d4e5d18eaa Mon Sep 17 00:00:00 2001 From: Sebastian Kootz Date: Tue, 9 Dec 2025 18:22:02 +0100 Subject: [PATCH] feat: added GitHub workflow that runs daily or on manual trigger and spits out a downloadable file with the updates applied. --- .github/workflows/verify.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/verify.yml diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml new file mode 100644 index 00000000..5363c265 --- /dev/null +++ b/.github/workflows/verify.yml @@ -0,0 +1,30 @@ +name: Verify URLs + +on: + workflow_dispatch: # Manual trigger + schedule: + - cron: "0 0 * * *" # Every day at 00:00 UTC + +jobs: + verify: + runs-on: ubuntu-latest + container: + image: rust:1.91-slim + + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + + - name: Build Rust "Verify" Program + working-directory: verify + run: cargo build + + - name: Execute Rust "Verify" Program + working-directory: verify + run: cargo run + + - name: Upload Updated "README.md" file + uses: actions/upload-artifact@v4 + with: + name: verification-results + path: README.md