mirror of
https://gitea.com/actions/appleboy-ssh-action.git
synced 2024-11-22 18:19:36 +01:00
ci: enhance CI workflow with SSH job and optimizations
- Remove an empty line in the jobs section - Reduce sleep duration from 5 seconds to 3 seconds - Add a new job `check-ssh-key` to the workflow - Add steps to create a new SSH server using Docker - Add steps to set environment variables for remote host and private key - Add a step to execute remote SSH commands using the `appleboy/ssh-action` GitHub Action Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
parent
0b0e77098a
commit
977b74a12d
1 changed files with 41 additions and 2 deletions
43
.github/workflows/ssh-server.yml
vendored
43
.github/workflows/ssh-server.yml
vendored
|
@ -5,7 +5,6 @@ on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
default-user-name-password:
|
default-user-name-password:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -29,7 +28,7 @@ jobs:
|
||||||
echo "======= container ip address ========="
|
echo "======= container ip address ========="
|
||||||
cat ip.txt
|
cat ip.txt
|
||||||
echo "======================================"
|
echo "======================================"
|
||||||
sleep 5
|
sleep 3
|
||||||
|
|
||||||
- name: executing remote ssh commands using password (1.0.3)
|
- name: executing remote ssh commands using password (1.0.3)
|
||||||
uses: appleboy/ssh-action@v1.0.3
|
uses: appleboy/ssh-action@v1.0.3
|
||||||
|
@ -39,3 +38,43 @@ jobs:
|
||||||
password: password
|
password: password
|
||||||
port: 2222
|
port: 2222
|
||||||
script: whoami
|
script: whoami
|
||||||
|
|
||||||
|
check-ssh-key:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: create new ssh server
|
||||||
|
run: |
|
||||||
|
docker run -d \
|
||||||
|
--name=openssh-server \
|
||||||
|
--hostname=openssh-server \
|
||||||
|
-p 2223:2222 \
|
||||||
|
-e PUBLIC_KEY=$(cat testdata/.ssh/id_rsa.pub) \
|
||||||
|
-e SUDO_ACCESS=false \
|
||||||
|
-e PASSWORD_ACCESS=true \
|
||||||
|
-e USER_PASSWORD=password \
|
||||||
|
-e USER_NAME=linuxserver.io \
|
||||||
|
--restart unless-stopped \
|
||||||
|
lscr.io/linuxserver/openssh-server:latest
|
||||||
|
docker exec openssh-server sh -c "hostname -i" > ip.txt
|
||||||
|
echo "REMOTE_HOST<<EOF" >> $GITHUB_ENV
|
||||||
|
cat ip.txt >> $GITHUB_ENV
|
||||||
|
echo "EOF" >> $GITHUB_ENV
|
||||||
|
echo "PRIVATE_KEY<<EOF" >> $GITHUB_ENV
|
||||||
|
cat testdata/.ssh/id_rsa >> $GITHUB_ENV
|
||||||
|
echo "EOF" >> $GITHUB_ENV
|
||||||
|
echo "======= container ip address ========="
|
||||||
|
cat ip.txt
|
||||||
|
echo "======================================"
|
||||||
|
sleep 3
|
||||||
|
|
||||||
|
- name: executing remote ssh commands using password (1.0.3)
|
||||||
|
uses: appleboy/ssh-action@v1.0.3
|
||||||
|
with:
|
||||||
|
host: ${{ env.REMOTE_HOST }}
|
||||||
|
username: linuxserver.io
|
||||||
|
key: ${{ env.PRIVATE_KEY }}
|
||||||
|
port: 2223
|
||||||
|
script: whoami
|
||||||
|
|
Loading…
Reference in a new issue