You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
503 lines
15 KiB
YAML
503 lines
15 KiB
YAML
7 months ago
|
name: testing main branch
|
||
3 years ago
|
|
||
7 months ago
|
on: [push]
|
||
3 years ago
|
|
||
5 years ago
|
jobs:
|
||
7 months ago
|
default-user-name-password:
|
||
5 years ago
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
7 months ago
|
- name: Checkout code
|
||
8 months ago
|
uses: actions/checkout@v4
|
||
5 years ago
|
|
||
7 months ago
|
- 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 "======================================"
|
||
|
sleep 2
|
||
2 years ago
|
|
||
7 months ago
|
- name: ssh by username and password
|
||
1 year ago
|
uses: ./
|
||
|
with:
|
||
7 months ago
|
host: ${{ env.REMOTE_HOST }}
|
||
|
username: linuxserver.io
|
||
|
password: password
|
||
|
port: 2222
|
||
1 year ago
|
script: whoami
|
||
2 years ago
|
|
||
7 months ago
|
check-ssh-key:
|
||
|
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 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 by private key
|
||
1 year ago
|
uses: ./
|
||
|
with:
|
||
7 months ago
|
host: ${{ env.REMOTE_HOST }}
|
||
|
username: linuxserver.io
|
||
|
key: ${{ env.PRIVATE_KEY }}
|
||
|
port: 2222
|
||
1 year ago
|
script: whoami
|
||
5 years ago
|
|
||
7 months ago
|
- name: wrong password but correct key
|
||
1 year ago
|
uses: ./
|
||
|
with:
|
||
7 months ago
|
host: ${{ env.REMOTE_HOST }}
|
||
|
username: linuxserver.io
|
||
|
password: "abcdef"
|
||
|
key: ${{ env.PRIVATE_KEY }}
|
||
|
port: 2222
|
||
1 year ago
|
script: whoami
|
||
5 years ago
|
|
||
7 months ago
|
- name: correct password but wrong key
|
||
1 year ago
|
uses: ./
|
||
|
with:
|
||
7 months ago
|
host: ${{ env.REMOTE_HOST }}
|
||
|
username: linuxserver.io
|
||
|
password: password
|
||
|
key: password
|
||
|
port: 2222
|
||
|
script: whoami
|
||
5 years ago
|
|
||
1 year ago
|
- name: stop script if command error
|
||
|
uses: ./
|
||
|
continue-on-error: true
|
||
|
with:
|
||
7 months ago
|
host: ${{ env.REMOTE_HOST }}
|
||
|
username: linuxserver.io
|
||
|
password: password
|
||
|
key: password
|
||
|
port: 2222
|
||
1 year ago
|
script_stop: true
|
||
|
sync: true
|
||
|
debug: true
|
||
|
script: |
|
||
|
mkdir abc/def
|
||
|
ls -al
|
||
5 years ago
|
|
||
7 months ago
|
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
|
||
|
|
||
1 year ago
|
- name: ssh key passphrase
|
||
|
uses: ./
|
||
|
with:
|
||
7 months ago
|
host: ${{ env.REMOTE_HOST }}
|
||
|
username: linuxserver.io
|
||
|
key: ${{ env.PRIVATE_KEY }}
|
||
|
port: 2222
|
||
|
passphrase: 1234
|
||
1 year ago
|
script: |
|
||
|
whoami
|
||
|
ls -al
|
||
5 years ago
|
|
||
7 months ago
|
- name: missing ssh key passphrase
|
||
1 year ago
|
uses: ./
|
||
7 months ago
|
continue-on-error: true
|
||
1 year ago
|
with:
|
||
7 months ago
|
host: ${{ env.REMOTE_HOST }}
|
||
|
username: linuxserver.io
|
||
|
key: ${{ env.PRIVATE_KEY }}
|
||
|
port: 2222
|
||
1 year ago
|
script: |
|
||
7 months ago
|
whoami
|
||
|
ls -al
|
||
4 years ago
|
|
||
1 year ago
|
# https://github.com/appleboy/ssh-action/issues/75#issuecomment-668314271
|
||
|
- name: Multiline SSH commands interpreted as single lines
|
||
|
uses: ./
|
||
|
with:
|
||
7 months ago
|
host: ${{ env.REMOTE_HOST }}
|
||
|
username: linuxserver.io
|
||
|
key: ${{ env.PRIVATE_KEY }}
|
||
|
port: 2222
|
||
|
passphrase: 1234
|
||
1 year ago
|
script_stop: true
|
||
|
script: |
|
||
4 years ago
|
ls \
|
||
|
-lah
|
||
1 year ago
|
use_insecure_cipher: true
|
||
4 years ago
|
|
||
7 months ago
|
multiple-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_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-01 \
|
||
|
--hostname=openssh-server-01 \
|
||
|
-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-01 sh -c "hostname -i" > ip01.txt
|
||
|
echo "REMOTE_HOST_01<<EOF" >> $GITHUB_ENV
|
||
|
cat ip01.txt >> $GITHUB_ENV
|
||
|
echo "EOF" >> $GITHUB_ENV
|
||
|
echo "======= container ip address ========="
|
||
|
cat ip01.txt
|
||
|
echo "======================================"
|
||
|
|
||
|
docker run -d \
|
||
|
--name=openssh-server-02 \
|
||
|
--hostname=openssh-server-02 \
|
||
|
-p 2223: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-02 sh -c "hostname -i" > ip02.txt
|
||
|
echo "REMOTE_HOST_02<<EOF" >> $GITHUB_ENV
|
||
|
cat ip02.txt >> $GITHUB_ENV
|
||
|
echo "EOF" >> $GITHUB_ENV
|
||
|
echo "======= container ip address ========="
|
||
|
cat ip02.txt
|
||
|
echo "======================================"
|
||
|
|
||
|
sleep 2
|
||
|
|
||
1 year ago
|
# https://github.com/appleboy/ssh-action/issues/85
|
||
|
- name: Deployment to multiple hosts with different ports
|
||
|
uses: ./
|
||
|
with:
|
||
7 months ago
|
host: "${{ env.REMOTE_HOST_01 }}:2222,${{ env.REMOTE_HOST_02 }}:2222"
|
||
|
username: linuxserver.io
|
||
|
key: ${{ env.PRIVATE_KEY }}
|
||
|
passphrase: 1234
|
||
1 year ago
|
script_stop: true
|
||
|
script: |
|
||
7 months ago
|
whoami
|
||
4 years ago
|
|
||
7 months ago
|
support-ed25519-key:
|
||
2 years ago
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
7 months ago
|
- name: Checkout code
|
||
8 months ago
|
uses: actions/checkout@v4
|
||
2 years ago
|
|
||
7 months ago
|
- name: add public key to env
|
||
|
run: |
|
||
|
echo "PUBLIC_KEY<<EOF" >> $GITHUB_ENV
|
||
|
cat testdata/.ssh/id_ed25519.pub >> $GITHUB_ENV
|
||
|
echo "EOF" >> $GITHUB_ENV
|
||
|
echo "======= public key ========="
|
||
|
cat testdata/.ssh/id_ed25519.pub
|
||
|
echo "============================"
|
||
|
echo "PRIVATE_KEY<<EOF" >> $GITHUB_ENV
|
||
|
cat testdata/.ssh/id_ed25519 >> $GITHUB_ENV
|
||
|
echo "EOF" >> $GITHUB_ENV
|
||
|
echo "======= private key ========="
|
||
|
cat testdata/.ssh/id_ed25519
|
||
|
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: testing id_ed25519 key
|
||
|
uses: ./
|
||
|
with:
|
||
|
host: ${{ env.REMOTE_HOST }}
|
||
|
username: linuxserver.io
|
||
|
key: ${{ env.PRIVATE_KEY }}
|
||
|
port: 2222
|
||
|
script: |
|
||
|
whoami
|
||
|
ls -al
|
||
|
|
||
|
testing-with-env:
|
||
|
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_ed25519.pub >> $GITHUB_ENV
|
||
|
echo "EOF" >> $GITHUB_ENV
|
||
|
echo "======= public key ========="
|
||
|
cat testdata/.ssh/id_ed25519.pub
|
||
|
echo "============================"
|
||
|
echo "PRIVATE_KEY<<EOF" >> $GITHUB_ENV
|
||
|
cat testdata/.ssh/id_ed25519 >> $GITHUB_ENV
|
||
|
echo "EOF" >> $GITHUB_ENV
|
||
|
echo "======= private key ========="
|
||
|
cat testdata/.ssh/id_ed25519
|
||
|
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=true \
|
||
|
-e PASSWORD_ACCESS=true \
|
||
|
-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: testing id_ed25519 key
|
||
|
uses: ./
|
||
|
with:
|
||
|
host: ${{ env.REMOTE_HOST }}
|
||
|
username: linuxserver.io
|
||
|
key: ${{ env.PRIVATE_KEY }}
|
||
|
port: 2222
|
||
|
script: |
|
||
|
whoami
|
||
|
ls -al
|
||
|
|
||
1 year ago
|
- name: pass environment
|
||
|
uses: ./
|
||
|
env:
|
||
|
FOO: "BAR"
|
||
|
with:
|
||
7 months ago
|
host: ${{ env.REMOTE_HOST }}
|
||
|
username: linuxserver.io
|
||
|
key: ${{ env.PRIVATE_KEY }}
|
||
|
port: 2222
|
||
1 year ago
|
envs: FOO
|
||
|
script: |
|
||
|
echo "I am $FOO, thanks"
|
||
|
echo "I am $BAR, thanks"
|
||
2 years ago
|
|
||
1 year ago
|
- name: pass multiple environment
|
||
|
uses: ./
|
||
|
env:
|
||
|
FOO: "BAR"
|
||
|
BAR: "FOO"
|
||
|
SHA: ${{ github.sha }}
|
||
|
PORT: ${{ secrets.PORT }}
|
||
|
with:
|
||
7 months ago
|
host: ${{ env.REMOTE_HOST }}
|
||
|
username: linuxserver.io
|
||
|
key: ${{ env.PRIVATE_KEY }}
|
||
|
port: 2222
|
||
1 year ago
|
envs: FOO,BAR,SHA,PORT
|
||
|
script: |
|
||
|
echo "I am $FOO, thanks"
|
||
|
echo "I am $BAR, thanks"
|
||
|
echo "sha: $SHA"
|
||
|
echo "port: $PORT"
|
||
2 years ago
|
|
||
1 year ago
|
- name: custom envs format
|
||
|
uses: ./
|
||
|
env:
|
||
|
FOO: "BAR"
|
||
|
AAA: "BBB"
|
||
|
with:
|
||
7 months ago
|
host: ${{ env.REMOTE_HOST }}
|
||
|
username: linuxserver.io
|
||
|
key: ${{ env.PRIVATE_KEY }}
|
||
|
port: 2222
|
||
1 year ago
|
envs: FOO,BAR,AAA
|
||
|
envs_format: export TEST_{NAME}={VALUE}
|
||
|
script: |
|
||
|
echo "I am $TEST_FOO, thanks"
|
||
|
echo "I am $TEST_BAR, thanks"
|
||
|
echo "I am $BAR, thanks"
|
||
|
echo "I am $TEST_AAA, thanks"
|
||
2 years ago
|
|
||
1 year ago
|
- name: pass all ENV variables to script
|
||
|
uses: ./
|
||
|
env:
|
||
|
INPUT_FOO: "BAR"
|
||
|
INPUT_AAA: "BBB"
|
||
|
with:
|
||
7 months ago
|
host: ${{ env.REMOTE_HOST }}
|
||
|
username: linuxserver.io
|
||
|
key: ${{ env.PRIVATE_KEY }}
|
||
|
port: 2222
|
||
1 year ago
|
allenvs: true
|
||
|
script: |
|
||
|
echo "I am $INPUT_FOO, thanks"
|
||
|
echo "I am $INPUT_AAA, thanks"
|
||
|
echo "$GITHUB_BASE_REF"
|
||
|
echo "$GITHUB_REF"
|
||
1 year ago
|
|
||
12 months ago
|
- name: switch to root user
|
||
|
uses: ./
|
||
|
with:
|
||
7 months ago
|
host: ${{ env.REMOTE_HOST }}
|
||
|
username: linuxserver.io
|
||
|
key: ${{ env.PRIVATE_KEY }}
|
||
|
port: 2222
|
||
12 months ago
|
script_stop: true
|
||
|
request_pty: true
|
||
|
command_timeout: 30s
|
||
|
script: |
|
||
|
whoami && echo 'hello world' && touch todo.txt
|
||
|
sudo whoami
|
||
9 months ago
|
|
||
|
testing06:
|
||
|
name: testing ipv6
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: checkout
|
||
8 months ago
|
uses: actions/checkout@v4
|
||
9 months ago
|
|
||
|
- name: Set up WARP
|
||
|
uses: fscarmen/warp-on-actions@v1.1
|
||
|
with:
|
||
|
stack: dual
|
||
|
|
||
|
- name: testing ipv6 for command
|
||
|
run: |
|
||
|
curl -m 9 --ipv6 --verbose https://google.com
|
||
|
|
||
|
- name: testing ipv6
|
||
|
uses: ./
|
||
|
with:
|
||
|
host: 2402:1f00:8000:800::2628
|
||
|
username: ubuntu
|
||
|
password: ${{ secrets.OVH_PASSWORD }}
|
||
|
protocol: tcp6
|
||
|
port: 22
|
||
|
command_timeout: 30s
|
||
|
script: |
|
||
|
whoami
|