mirror of
https://github.com/ripienaar/free-for-dev.git
synced 2026-01-03 18:15:31 -05:00
feat: added GitHub workflow that runs daily or on manual trigger and spits out a downloadable file with the updates applied.
This commit is contained in:
parent
cd86627d81
commit
8eef92aa46
1 changed files with 30 additions and 0 deletions
30
.github/workflows/verify.yml
vendored
Normal file
30
.github/workflows/verify.yml
vendored
Normal file
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue