50 lines
1.3 KiB
YAML
50 lines
1.3 KiB
YAML
name: Daily Feed Update
|
|
|
|
on:
|
|
schedule:
|
|
# Run daily at 1:00 AM UTC (adjust the time as needed)
|
|
- cron: '0 1 * * *'
|
|
workflow_dispatch:
|
|
# Allow manual triggering of the workflow
|
|
|
|
jobs:
|
|
update-feed:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Setup SSH
|
|
run: |
|
|
mkdir -p ~/.ssh
|
|
echo "${{ secrets.TOKEN_NAME }}" > ~/.ssh/id_rsa
|
|
chmod 600 ~/.ssh/id_rsa
|
|
apt-get -yq update && apt-get -yqq install ssh
|
|
ssh-keyscan git.mcdevitt.tech >> ~/.ssh/known_hosts
|
|
|
|
- name: Checkout repository
|
|
run: |
|
|
git clone git@git.mcdevitt.tech:bpmcdevitt/github_poc_collector.git .
|
|
|
|
- name: Setup Rust
|
|
run: |
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
|
source "$HOME/.cargo/env"
|
|
rustup default stable
|
|
rustc --version
|
|
cargo --version
|
|
|
|
- name: Cache Cargo dependencies
|
|
run: |
|
|
mkdir -p ~/.cargo/registry
|
|
mkdir -p ~/.cargo/git
|
|
mkdir -p target
|
|
|
|
- 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
|