name: Daily Feed Update on: schedule: - cron: '0 1 * * *' workflow_dispatch: jobs: update-feed: runs-on: ubuntu-latest container: image: ubuntu:latest steps: - name: Install Dependencies run: | # Ensure we have the necessary tools to install packages apt-get update -y && apt-get install openssh-client -y - name: Setup SSH env: SSH_PRIVATE_KEY: ${{ secrets.TOKEN_NAME }} run: | # Debug: Check if SSH_PRIVATE_KEY is set if [ -z "$SSH_PRIVATE_KEY" ]; then echo "Error: SSH_PRIVATE_KEY is not set" exit 1 fi # Prepare SSH directory mkdir -p ~/.ssh chmod 700 ~/.ssh # Write SSH key, with additional error checking echo "$SSH_PRIVATE_KEY" | tr -d '\r' > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa # Verify key file if [ ! -f ~/.ssh/id_rsa ]; then echo "Error: Failed to create SSH private key file" exit 1 fi # Add host key ssh-keyscan git.mcdevitt.tech >> ~/.ssh/known_hosts # Test SSH connection ssh -vT git@git.mcdevitt.tech || true - name: Checkout repository run: | GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no" \ 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: | source "$HOME/.cargo/env" 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