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