From 73fc7e1997c1f665fc2d813cde7f90d5c6a0215c Mon Sep 17 00:00:00 2001 From: themodernhakr Date: Wed, 26 Feb 2025 11:37:21 -0600 Subject: [PATCH] add action workflow --- action.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 action.yaml diff --git a/action.yaml b/action.yaml new file mode 100644 index 0000000..5a41dc2 --- /dev/null +++ b/action.yaml @@ -0,0 +1,15 @@ +name: remote ssh command +on: [push] +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: whoami