mirror of
https://github.com/appleboy/ssh-action.git
synced 2026-07-10 15:33:16 +00:00
Compare commits
6 Commits
b8cf92c329
...
0ca34f1409
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0ca34f1409 | ||
|
|
151aa23409 | ||
|
|
05bfd68c72 | ||
|
|
5429cd9d13 | ||
|
|
6339d4b013 | ||
|
|
e13c387332 |
47
.github/workflows/main.yml
vendored
47
.github/workflows/main.yml
vendored
@ -505,6 +505,51 @@ jobs:
|
|||||||
script: |
|
script: |
|
||||||
whoami
|
whoami
|
||||||
|
|
||||||
|
testing07:
|
||||||
|
name: some special character
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set Environment Variables
|
||||||
|
run: |
|
||||||
|
PASS='3HUS$?8kLu)}'
|
||||||
|
printf "PASS=${PASS}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- 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='${{ env.PASS }}' \
|
||||||
|
-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 username and password
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
host: ${{ env.REMOTE_HOST }}
|
||||||
|
username: linuxserver.io
|
||||||
|
password: ${{ env.PASS }}
|
||||||
|
port: 2222
|
||||||
|
script: |
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
whoami
|
||||||
|
|
||||||
testing-capturing-output:
|
testing-capturing-output:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
@ -540,7 +585,7 @@ jobs:
|
|||||||
username: linuxserver.io
|
username: linuxserver.io
|
||||||
password: password
|
password: password
|
||||||
port: 2222
|
port: 2222
|
||||||
capture_stdout: 'true'
|
capture_stdout: true
|
||||||
script: |
|
script: |
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -e
|
set -e
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user