use action checkout
This commit is contained in:
parent
561a4b3039
commit
553ee60df5
1 changed files with 11 additions and 15 deletions
|
@ -1,4 +1,4 @@
|
||||||
oname: Daily Feed Update
|
name: Daily Feed Update
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 1 * * *'
|
- cron: '0 1 * * *'
|
||||||
|
@ -16,25 +16,21 @@ jobs:
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: |
|
run: |
|
||||||
apt-get update -y && apt-get install -y \
|
apt-get update -y && apt-get install -y \
|
||||||
openssh-client \
|
|
||||||
git \
|
git \
|
||||||
|
openssh-client \
|
||||||
curl \
|
curl \
|
||||||
ca-certificates
|
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
|
- name: Checkout repository
|
||||||
run: |
|
uses: actions/checkout@v4
|
||||||
GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no" \
|
with:
|
||||||
git clone git@git.mcdevitt.tech:bpmcdevitt/github_poc_collector.git .
|
repository: bpmcdevitt/github_poc_collector
|
||||||
|
# Use the appropriate ref if you want a specific branch/commit
|
||||||
|
# ref: main
|
||||||
|
# If you need to use SSH
|
||||||
|
ssh-key: ${{ secrets.TOKEN_NAME }}
|
||||||
|
# If you have specific known hosts
|
||||||
|
ssh-known-hosts: git.mcdevitt.tech
|
||||||
|
|
||||||
- name: Setup Rust
|
- name: Setup Rust
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Add table
Reference in a new issue