modified daily-collect.yaml job
This commit is contained in:
parent
9ba02601a0
commit
bcc1ae9f3e
1 changed files with 6 additions and 2 deletions
|
@ -2,10 +2,8 @@ name: Daily Feed Update
|
||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
# Run daily at 1:00 AM UTC (adjust the time as needed)
|
|
||||||
- cron: '0 1 * * *'
|
- cron: '0 1 * * *'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
# Allow manual triggering of the workflow
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
update-feed:
|
update-feed:
|
||||||
|
@ -30,6 +28,12 @@ jobs:
|
||||||
target
|
target
|
||||||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
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
|
- name: Run recent feed update
|
||||||
run: cargo run -- --feed recent
|
run: cargo run -- --feed recent
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue