2024-06-05 05:34:57 +00:00
|
|
|
name: openssh-server
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
default-user-name-password:
|
|
|
|
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 2222:2222 \
|
|
|
|
-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 "======= container ip address ========="
|
|
|
|
cat ip.txt
|
|
|
|
echo "======================================"
|
2024-06-05 07:54:35 +00:00
|
|
|
sleep 2
|
2024-06-05 05:34:57 +00:00
|
|
|
|
2024-06-05 07:54:35 +00:00
|
|
|
- name: ssh by username and password
|
2024-06-05 05:34:57 +00:00
|
|
|
uses: appleboy/ssh-action@v1.0.3
|
|
|
|
with:
|
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
password: password
|
|
|
|
port: 2222
|
|
|
|
script: whoami
|
2024-06-05 06:54:29 +00:00
|
|
|
|
|
|
|
check-ssh-key:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
2024-06-05 07:53:33 +00:00
|
|
|
- name: add public key to env
|
|
|
|
run: |
|
|
|
|
echo "PUBLIC_KEY<<EOF" >> $GITHUB_ENV
|
|
|
|
cat testdata/.ssh/id_rsa.pub >> $GITHUB_ENV
|
|
|
|
echo "EOF" >> $GITHUB_ENV
|
|
|
|
echo "======= public key ========="
|
|
|
|
cat testdata/.ssh/id_rsa.pub
|
|
|
|
echo "============================"
|
|
|
|
echo "PRIVATE_KEY<<EOF" >> $GITHUB_ENV
|
|
|
|
cat testdata/.ssh/id_rsa >> $GITHUB_ENV
|
|
|
|
echo "EOF" >> $GITHUB_ENV
|
|
|
|
echo "======= private key ========="
|
|
|
|
cat testdata/.ssh/id_rsa
|
|
|
|
echo "============================"
|
|
|
|
|
2024-06-05 06:54:29 +00:00
|
|
|
- name: create new ssh server
|
|
|
|
run: |
|
|
|
|
docker run -d \
|
|
|
|
--name=openssh-server \
|
|
|
|
--hostname=openssh-server \
|
2024-06-05 07:54:35 +00:00
|
|
|
-p 2222:2222 \
|
2024-06-05 07:53:33 +00:00
|
|
|
-e PUBLIC_KEY="${{ env.PUBLIC_KEY }}" \
|
2024-06-05 06:54:29 +00:00
|
|
|
-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 "======= container ip address ========="
|
|
|
|
cat ip.txt
|
|
|
|
echo "======================================"
|
2024-06-05 07:54:35 +00:00
|
|
|
sleep 2
|
2024-06-05 06:54:29 +00:00
|
|
|
|
2024-06-05 07:57:27 +00:00
|
|
|
- name: ssh by private key
|
2024-06-05 06:54:29 +00:00
|
|
|
uses: appleboy/ssh-action@v1.0.3
|
|
|
|
with:
|
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
key: ${{ env.PRIVATE_KEY }}
|
2024-06-05 07:54:35 +00:00
|
|
|
port: 2222
|
2024-06-05 06:54:29 +00:00
|
|
|
script: whoami
|
2024-06-05 07:57:27 +00:00
|
|
|
|
|
|
|
- name: wrong password but correct key
|
|
|
|
uses: appleboy/ssh-action@v1.0.3
|
|
|
|
with:
|
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
password: "abcdef"
|
|
|
|
key: ${{ env.PRIVATE_KEY }}
|
|
|
|
port: 2222
|
|
|
|
script: whoami
|
|
|
|
|
|
|
|
- name: correct password but wrong key
|
|
|
|
uses: appleboy/ssh-action@v1.0.3
|
|
|
|
with:
|
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
password: password
|
|
|
|
key: password
|
|
|
|
port: 2222
|
|
|
|
script: whoami
|
2024-06-05 07:59:32 +00:00
|
|
|
|
|
|
|
- name: stop script if command error
|
|
|
|
uses: appleboy/ssh-action@v1.0.3
|
|
|
|
continue-on-error: true
|
|
|
|
with:
|
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
password: password
|
|
|
|
key: password
|
|
|
|
port: 2222
|
|
|
|
script_stop: true
|
|
|
|
sync: true
|
|
|
|
debug: true
|
|
|
|
script: |
|
|
|
|
mkdir abc/def
|
|
|
|
ls -al
|
2024-06-05 08:13:42 +00:00
|
|
|
|
|
|
|
support-key-passphrase:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: add public key to env
|
|
|
|
run: |
|
|
|
|
echo "PUBLIC_KEY<<EOF" >> $GITHUB_ENV
|
|
|
|
cat testdata/.ssh/id_passphrase.pub >> $GITHUB_ENV
|
|
|
|
echo "EOF" >> $GITHUB_ENV
|
|
|
|
echo "======= public key ========="
|
|
|
|
cat testdata/.ssh/id_passphrase.pub
|
|
|
|
echo "============================"
|
|
|
|
echo "PRIVATE_KEY<<EOF" >> $GITHUB_ENV
|
|
|
|
cat testdata/.ssh/id_passphrase >> $GITHUB_ENV
|
|
|
|
echo "EOF" >> $GITHUB_ENV
|
|
|
|
echo "======= private key ========="
|
|
|
|
cat testdata/.ssh/id_passphrase
|
|
|
|
echo "============================"
|
|
|
|
|
|
|
|
- name: create new ssh server
|
|
|
|
run: |
|
|
|
|
docker run -d \
|
|
|
|
--name=openssh-server \
|
|
|
|
--hostname=openssh-server \
|
|
|
|
-p 2222:2222 \
|
|
|
|
-e PUBLIC_KEY="${{ env.PUBLIC_KEY }}" \
|
|
|
|
-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 "======= container ip address ========="
|
|
|
|
cat ip.txt
|
|
|
|
echo "======================================"
|
|
|
|
sleep 2
|
|
|
|
|
|
|
|
- name: ssh key passphrase
|
|
|
|
uses: appleboy/ssh-action@v1.0.3
|
|
|
|
with:
|
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
key: ${{ env.PRIVATE_KEY }}
|
|
|
|
port: 2222
|
|
|
|
passphrase: 1234
|
|
|
|
script: |
|
|
|
|
whoami
|
|
|
|
ls -al
|
2024-06-05 08:16:59 +00:00
|
|
|
|
|
|
|
- name: missing ssh key passphrase
|
|
|
|
uses: appleboy/ssh-action@v1.0.3
|
|
|
|
continue-on-error: true
|
|
|
|
with:
|
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
key: ${{ env.PRIVATE_KEY }}
|
|
|
|
port: 2222
|
|
|
|
script: |
|
|
|
|
whoami
|
|
|
|
ls -al
|
2024-06-05 09:00:36 +00:00
|
|
|
|
|
|
|
# https://github.com/appleboy/ssh-action/issues/75#issuecomment-668314271
|
|
|
|
- name: Multiline SSH commands interpreted as single lines
|
|
|
|
uses: appleboy/ssh-action@v1.0.3
|
|
|
|
with:
|
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
key: ${{ env.PRIVATE_KEY }}
|
|
|
|
port: 2222
|
|
|
|
passphrase: 1234
|
|
|
|
script_stop: true
|
|
|
|
script: |
|
|
|
|
ls \
|
|
|
|
-lah
|
|
|
|
use_insecure_cipher: true
|