This commit is contained in:
Brendan McDevitt 2025-03-28 08:46:53 -05:00
parent fd37dd90e5
commit e68e10e4c7

View file

@ -3,55 +3,51 @@ on:
schedule: schedule:
- cron: '0 1 * * *' - cron: '0 1 * * *'
workflow_dispatch: workflow_dispatch:
permissions: permissions:
contents: write contents: write
jobs: jobs:
update-feed: update-feed:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
image: node:18 image: node:18
steps: steps:
- name: Git Setup
run: |
mkdir -p ~/.ssh
echo 'Host git.mcdevitt.tech' >> ~/.ssh/config
echo ' HostName git.mcdevitt.tech' >> ~/.ssh/config
echo ' User git' >> ~/.ssh/config
echo ' Port 3022' >> ~/.ssh/config
cat ~/.ssh/config
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
repository: bpmcdevitt/github_poc_collector server-url: 'https://git.mcdevitt.tech'
# Use the appropriate ref if you want a specific branch/commit repository: 'bpmcdevitt/github_poc_collector'
# ref: main
# If you need to use SSH - name: Setup SSH
#ssh-key: ${{ secrets.TOKEN_NAME }} env:
# If you have specific known hosts SSH_PRIVATE_KEY: ${{ secrets.TOKEN_NAME }}
#ssh-known-hosts: 'git.mcdevitt.tech' run: |
#ssh-strict: 'false' mkdir -p ~/.ssh
github-server-url: 'https://git.mcdevitt.tech' ssh-keyscan -p 3022 git.mcdevitt.tech >> ~/.ssh/known_hosts
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
- name: Setup Rust - name: Setup Rust
run: | run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source "$HOME/.cargo/env" [ -f "$HOME/.cargo/env" ] && . "$HOME/.cargo/env"
export PATH="$HOME/.cargo/bin:$PATH"
rustup default stable rustup default stable
rustc --version rustc --version
cargo --version cargo --version
- name: Cache Cargo dependencies - name: Cache Cargo dependencies
run: | uses: actions/cache@v3
mkdir -p ~/.cargo/registry with:
mkdir -p ~/.cargo/git path: |
mkdir -p target ~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run recent feed update - name: Run recent feed update
run: | run: |
source "$HOME/.cargo/env" [ -f "$HOME/.cargo/env" ] && . "$HOME/.cargo/env"
export PATH="$HOME/.cargo/bin:$PATH"
cargo run -- --feed recent cargo run -- --feed recent
- name: Commit and push results - name: Commit and push results
@ -60,4 +56,4 @@ jobs:
git config user.email brendan@mcdevitt.tech git config user.email brendan@mcdevitt.tech
git add . git add .
git commit -m "Update recent feed data" || exit 0 git commit -m "Update recent feed data" || exit 0
git push git push origin main