github_poc_collector/.forgejo/workflows/daily-collect.yaml

46 lines
1.1 KiB
YAML

name: Daily Feed Update
on:
schedule:
- cron: '0 1 * * *'
workflow_dispatch:
jobs:
update-feed:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Cache Cargo dependencies
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install Rust toolchain
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source "$HOME/.cargo/env"
rustup default stable
- name: Run recent feed update
run: cargo run -- --feed recent
- name: Commit and push results
run: |
git config user.name bpmcdevitt
git config user.email brendan@mcdevitt.tech
git add .
git commit -m "Update recent feed data" || exit 0
git push