name: Daily Feed Update on: schedule: - cron: '0 1 * * *' workflow_dispatch: permissions: contents: write jobs: update-feed: runs-on: ubuntu-latest container: image: ubuntu:22.04 steps: - name: Install Dependencies run: | apt-get update -y && apt-get install -y \ openssh-client \ git \ curl \ ca-certificates - name: Setup SSH env: SSH_PRIVATE_KEY: ${{ secrets.TOKEN_NAME }} run: | mkdir -p ~/.ssh chmod 700 ~/.ssh echo "$SSH_PRIVATE_KEY" | tr -d '\r' > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa ssh-keyscan git.mcdevitt.tech >> ~/.ssh/known_hosts - 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 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') }} restore-keys: | ${{ runner.os }}-cargo- - 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