-
Notifications
You must be signed in to change notification settings - Fork 0
122 lines (108 loc) · 3.76 KB
/
test2.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
name: Test Private Key
on: [push]
jobs:
setup-ssh-server:
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_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 "============================"
- 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 \
-e PUBLIC_KEY="${{ env.PUBLIC_KEY }}" \
--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: executing remote ssh commands using password (1.0.3)
uses: appleboy/[email protected]
if: always()
with:
host: ${{ env.REMOTE_HOST }}
username: linuxserver.io
key: ${{ env.PRIVATE_KEY }}
port: 2222
script: whoami
setup-ssh-service:
runs-on: ubuntu-latest
services:
sshd:
image: lscr.io/linuxserver/openssh-server:latest
ports:
- 2222:2222
env:
PASSWORD_ACCESS: true
USER_PASSWORD: password
USER_NAME: linuxserver.io
PUBLIC_KEY: ${{ secrets.PUBLIC_KEY }}
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_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 "============================"
- name: Get sshd container IP
id: sshd
run: |
SSHD_IP=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' ${{ job.services.sshd.id }})
echo "SSHD IP: $SSHD_IP"
echo "sshd_ip=$SSHD_IP" >> $GITHUB_OUTPUT
- name: Run tests
run: |
SSHD_IP=${{ steps.sshd.outputs.sshd_ip }}
echo "SSHD IP: $SSHD_IP"
- name: executing remote ssh commands using password (1.0.3)
uses: appleboy/[email protected]
if: always()
with:
host: ${{ steps.sshd.outputs.sshd_ip }}
username: linuxserver.io
password: password
port: 2222
script: whoami
- name: executing remote ssh commands using password (1.0.3)
uses: appleboy/[email protected]
with:
host: ${{ steps.sshd.outputs.sshd_ip }}
username: linuxserver.io
key: ${{ env.PRIVATE_KEY }}
port: 2222
script: whoami