From a9ff8c559dd6be5c95ed0850c6ae4cc9d8e4b315 Mon Sep 17 00:00:00 2001 From: bpmcdevitt Date: Thu, 27 Mar 2025 22:01:04 +0000 Subject: [PATCH] update url in daily-collect job --- .forgejo/workflows/daily-collect.yaml | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/.forgejo/workflows/daily-collect.yaml b/.forgejo/workflows/daily-collect.yaml index ce8f532..90cf235 100644 --- a/.forgejo/workflows/daily-collect.yaml +++ b/.forgejo/workflows/daily-collect.yaml @@ -11,28 +11,22 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + run: | + git clone https://git.mcdevitt.tech/bpmcdevitt/github_poc_collector.git . - 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 + 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