Create workflow that can be configured to update production servers #3

Merged
ehrumsey merged 5 commits from dev into master 2025-02-26 13:37:56 -06:00
2 changed files with 18 additions and 0 deletions
Showing only changes of commit c2e0cf3e2d - Show all commits

17
action.yaml Normal file
View File

@ -0,0 +1,17 @@
name: remote ssh command
on:
pull_request:
branches: master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: executing remote ssh commands using password
uses: appleboy/ssh-action@v1.2.1
with:
host: ${{ secrets.HOST }}
username: linuxserver.io
password: ${{ secrets.PASSWORD }}
port: ${{ secrets.PORT }}
script_path: scripts/update_servers.sh

View File

@ -0,0 +1 @@
whoami