2024-06-05 13:55:28 +00:00
|
|
|
name: testing main branch
|
2022-02-27 23:08:00 +00:00
|
|
|
|
2024-06-05 13:55:28 +00:00
|
|
|
on: [push]
|
2022-02-27 23:08:00 +00:00
|
|
|
|
2019-09-29 02:43:33 +00:00
|
|
|
jobs:
|
2024-06-05 13:55:28 +00:00
|
|
|
default-user-name-password:
|
2019-09-29 02:43:33 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-06-05 13:55:28 +00:00
|
|
|
- name: Checkout code
|
2024-05-04 11:52:33 +00:00
|
|
|
uses: actions/checkout@v4
|
2020-02-13 13:20:15 +00:00
|
|
|
|
2024-06-05 13:55:28 +00:00
|
|
|
- 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
|
2023-02-28 09:11:47 +00:00
|
|
|
|
2024-06-05 13:55:28 +00:00
|
|
|
- name: ssh by username and password
|
2023-12-26 07:07:39 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
2024-06-05 13:55:28 +00:00
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
password: password
|
|
|
|
port: 2222
|
2023-12-26 07:07:39 +00:00
|
|
|
script: whoami
|
2023-02-28 09:11:47 +00:00
|
|
|
|
2024-06-05 13:55:28 +00:00
|
|
|
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
|
2023-12-26 07:07:39 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
2024-06-05 13:55:28 +00:00
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
key: ${{ env.PRIVATE_KEY }}
|
|
|
|
port: 2222
|
2023-12-26 07:07:39 +00:00
|
|
|
script: whoami
|
2019-09-29 02:52:20 +00:00
|
|
|
|
2024-06-05 13:55:28 +00:00
|
|
|
- name: wrong password but correct key
|
2023-12-26 07:07:39 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
2024-06-05 13:55:28 +00:00
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
password: "abcdef"
|
|
|
|
key: ${{ env.PRIVATE_KEY }}
|
|
|
|
port: 2222
|
2023-12-26 07:07:39 +00:00
|
|
|
script: whoami
|
2019-09-29 02:53:17 +00:00
|
|
|
|
2024-06-05 13:55:28 +00:00
|
|
|
- name: correct password but wrong key
|
2023-12-26 07:07:39 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
2024-06-05 13:55:28 +00:00
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
password: password
|
|
|
|
key: password
|
|
|
|
port: 2222
|
|
|
|
script: whoami
|
2019-09-29 03:16:09 +00:00
|
|
|
|
2023-12-26 07:07:39 +00:00
|
|
|
- name: stop script if command error
|
|
|
|
uses: ./
|
|
|
|
continue-on-error: true
|
|
|
|
with:
|
2024-06-05 13:55:28 +00:00
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
password: password
|
|
|
|
key: password
|
|
|
|
port: 2222
|
2023-12-26 07:07:39 +00:00
|
|
|
script_stop: true
|
|
|
|
sync: true
|
|
|
|
debug: true
|
|
|
|
script: |
|
|
|
|
mkdir abc/def
|
|
|
|
ls -al
|
2019-09-29 03:16:09 +00:00
|
|
|
|
2024-06-05 13:55:28 +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
|
|
|
|
|
2023-12-26 07:07:39 +00:00
|
|
|
- name: ssh key passphrase
|
|
|
|
uses: ./
|
|
|
|
with:
|
2024-06-05 13:55:28 +00:00
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
key: ${{ env.PRIVATE_KEY }}
|
|
|
|
port: 2222
|
|
|
|
passphrase: 1234
|
2023-12-26 07:07:39 +00:00
|
|
|
script: |
|
|
|
|
whoami
|
|
|
|
ls -al
|
2020-05-24 02:54:31 +00:00
|
|
|
|
2024-06-05 13:55:28 +00:00
|
|
|
- name: missing ssh key passphrase
|
2023-12-26 07:07:39 +00:00
|
|
|
uses: ./
|
2024-06-05 13:55:28 +00:00
|
|
|
continue-on-error: true
|
2023-12-26 07:07:39 +00:00
|
|
|
with:
|
2024-06-05 13:55:28 +00:00
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
key: ${{ env.PRIVATE_KEY }}
|
|
|
|
port: 2222
|
2023-12-26 07:07:39 +00:00
|
|
|
script: |
|
2024-06-05 13:55:28 +00:00
|
|
|
whoami
|
|
|
|
ls -al
|
2020-08-08 04:26:01 +00:00
|
|
|
|
2023-12-26 07:07:39 +00:00
|
|
|
# https://github.com/appleboy/ssh-action/issues/75#issuecomment-668314271
|
|
|
|
- name: Multiline SSH commands interpreted as single lines
|
|
|
|
uses: ./
|
|
|
|
with:
|
2024-06-05 13:55:28 +00:00
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
key: ${{ env.PRIVATE_KEY }}
|
|
|
|
port: 2222
|
|
|
|
passphrase: 1234
|
2023-12-26 07:07:39 +00:00
|
|
|
script_stop: true
|
|
|
|
script: |
|
2020-08-08 04:26:01 +00:00
|
|
|
ls \
|
|
|
|
-lah
|
2023-12-26 07:07:39 +00:00
|
|
|
use_insecure_cipher: true
|
2020-11-17 02:20:18 +00:00
|
|
|
|
2024-06-05 13:55:28 +00:00
|
|
|
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
|
|
|
|
|
2023-12-26 07:07:39 +00:00
|
|
|
# https://github.com/appleboy/ssh-action/issues/85
|
|
|
|
- name: Deployment to multiple hosts with different ports
|
|
|
|
uses: ./
|
|
|
|
with:
|
2024-06-05 13:55:28 +00:00
|
|
|
host: "${{ env.REMOTE_HOST_01 }}:2222,${{ env.REMOTE_HOST_02 }}:2222"
|
|
|
|
username: linuxserver.io
|
|
|
|
key: ${{ env.PRIVATE_KEY }}
|
|
|
|
passphrase: 1234
|
2023-12-26 07:07:39 +00:00
|
|
|
script_stop: true
|
|
|
|
script: |
|
2024-06-05 13:55:28 +00:00
|
|
|
whoami
|
2021-03-06 15:00:38 +00:00
|
|
|
|
2024-06-05 13:55:28 +00:00
|
|
|
support-ed25519-key:
|
2023-04-13 03:15:42 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-06-05 13:55:28 +00:00
|
|
|
- name: Checkout code
|
2024-05-04 11:52:33 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-04-13 03:15:42 +00:00
|
|
|
|
2024-06-05 13:55:28 +00:00
|
|
|
- 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
|
|
|
|
|
2023-12-26 07:07:39 +00:00
|
|
|
- name: pass environment
|
|
|
|
uses: ./
|
|
|
|
env:
|
|
|
|
FOO: "BAR"
|
|
|
|
with:
|
2024-06-05 13:55:28 +00:00
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
key: ${{ env.PRIVATE_KEY }}
|
|
|
|
port: 2222
|
2023-12-26 07:07:39 +00:00
|
|
|
envs: FOO
|
|
|
|
script: |
|
|
|
|
echo "I am $FOO, thanks"
|
|
|
|
echo "I am $BAR, thanks"
|
2023-04-13 03:15:42 +00:00
|
|
|
|
2023-12-26 07:07:39 +00:00
|
|
|
- name: pass multiple environment
|
|
|
|
uses: ./
|
|
|
|
env:
|
|
|
|
FOO: "BAR"
|
|
|
|
BAR: "FOO"
|
|
|
|
SHA: ${{ github.sha }}
|
|
|
|
PORT: ${{ secrets.PORT }}
|
|
|
|
with:
|
2024-06-05 13:55:28 +00:00
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
key: ${{ env.PRIVATE_KEY }}
|
|
|
|
port: 2222
|
2023-12-26 07:07:39 +00:00
|
|
|
envs: FOO,BAR,SHA,PORT
|
|
|
|
script: |
|
|
|
|
echo "I am $FOO, thanks"
|
|
|
|
echo "I am $BAR, thanks"
|
|
|
|
echo "sha: $SHA"
|
|
|
|
echo "port: $PORT"
|
2023-04-13 03:15:42 +00:00
|
|
|
|
2023-12-26 07:07:39 +00:00
|
|
|
- name: custom envs format
|
|
|
|
uses: ./
|
|
|
|
env:
|
|
|
|
FOO: "BAR"
|
|
|
|
AAA: "BBB"
|
|
|
|
with:
|
2024-06-05 13:55:28 +00:00
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
key: ${{ env.PRIVATE_KEY }}
|
|
|
|
port: 2222
|
2023-12-26 07:07:39 +00:00
|
|
|
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"
|
2023-04-13 06:38:24 +00:00
|
|
|
|
2023-12-26 07:07:39 +00:00
|
|
|
- name: pass all ENV variables to script
|
|
|
|
uses: ./
|
|
|
|
env:
|
|
|
|
INPUT_FOO: "BAR"
|
|
|
|
INPUT_AAA: "BBB"
|
|
|
|
with:
|
2024-06-05 13:55:28 +00:00
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
key: ${{ env.PRIVATE_KEY }}
|
|
|
|
port: 2222
|
2023-12-26 07:07:39 +00:00
|
|
|
allenvs: true
|
|
|
|
script: |
|
|
|
|
echo "I am $INPUT_FOO, thanks"
|
|
|
|
echo "I am $INPUT_AAA, thanks"
|
|
|
|
echo "$GITHUB_BASE_REF"
|
|
|
|
echo "$GITHUB_REF"
|
2023-07-23 01:53:20 +00:00
|
|
|
|
2024-01-07 11:39:23 +00:00
|
|
|
- name: switch to root user
|
|
|
|
uses: ./
|
|
|
|
with:
|
2024-06-05 13:55:28 +00:00
|
|
|
host: ${{ env.REMOTE_HOST }}
|
|
|
|
username: linuxserver.io
|
|
|
|
key: ${{ env.PRIVATE_KEY }}
|
|
|
|
port: 2222
|
2024-01-07 11:39:23 +00:00
|
|
|
script_stop: true
|
|
|
|
request_pty: true
|
|
|
|
command_timeout: 30s
|
|
|
|
script: |
|
|
|
|
whoami && echo 'hello world' && touch todo.txt
|
|
|
|
sudo whoami
|
2024-03-16 07:45:28 +00:00
|
|
|
|
|
|
|
testing06:
|
|
|
|
name: testing ipv6
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: checkout
|
2024-05-04 11:52:33 +00:00
|
|
|
uses: actions/checkout@v4
|
2024-03-16 07:45:28 +00:00
|
|
|
|
|
|
|
- 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
|