install ssh in runner image for daily-collect job
This commit is contained in:
parent
4533c54da5
commit
a3aa9ed49c
1 changed files with 6 additions and 1 deletions
|
@ -12,12 +12,17 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
|
- name: Install SSH
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y openssh-client
|
||||||
|
|
||||||
- name: Setup SSH
|
- name: Setup SSH
|
||||||
run: |
|
run: |
|
||||||
mkdir -p ~/.ssh
|
mkdir -p ~/.ssh
|
||||||
echo "${{ secrets.TOKEN_NAME }}" > ~/.ssh/id_rsa
|
echo "${{ secrets.TOKEN_NAME }}" > ~/.ssh/id_rsa
|
||||||
chmod 600 ~/.ssh/id_rsa
|
chmod 600 ~/.ssh/id_rsa
|
||||||
apt-get -yq update && apt-get -yqq install ssh
|
|
||||||
ssh-keyscan git.mcdevitt.tech >> ~/.ssh/known_hosts
|
ssh-keyscan git.mcdevitt.tech >> ~/.ssh/known_hosts
|
||||||
|
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
|
Loading…
Add table
Reference in a new issue