ci: add GitHub Actions workflow for container IP setup #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Setup SSH Server | |
on: [push] | |
jobs: | |
setup-ssh-server: | |
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 "======================================" | |
sleep 2 | |
- name: executing remote ssh commands using password (0.1.3) | |
uses: appleboy/[email protected] | |
if: always() | |
with: | |
host: ${{ env.REMOTE_HOST }} | |
username: linuxserver.io | |
password: password | |
port: 2222 | |
script: whoami | |
- name: executing remote ssh commands using password (0.1.4) | |
uses: appleboy/[email protected] | |
if: always() | |
with: | |
host: ${{ env.REMOTE_HOST }} | |
username: linuxserver.io | |
password: password | |
port: 2222 | |
script: whoami | |
- name: executing remote ssh commands using password (0.1.5) | |
uses: appleboy/[email protected] | |
if: always() | |
with: | |
host: ${{ env.REMOTE_HOST }} | |
username: linuxserver.io | |
password: password | |
port: 2222 | |
script: whoami | |
- name: executing remote ssh commands using password (1.0.3) | |
uses: appleboy/[email protected] | |
if: always() | |
with: | |
host: ${{ env.REMOTE_HOST }} | |
username: linuxserver.io | |
password: password | |
port: 2222 | |
script: whoami |