Init test workflow
Some checks failed
SSH and echo to file / ssh (push) Failing after 3s

This commit is contained in:
Joey Hafner 2024-09-06 13:55:30 -07:00
parent 7868248335
commit b8c000a6a7
No known key found for this signature in database

View File

@ -0,0 +1,20 @@
name: SSH and echo to file
on:
push:
branches:
- main
workflow_dispatch:
jobs:
ssh:
runs-on: ubuntu-latest
steps:
- name: SSH into host
uses: appleboy/ssh-action@v1
with:
host: ${{ secrets.HOST_DOMAIN }}
username: ${{ secrets.HOST_USERNAME }}
password: ${{ secrets.HOST_PASSWORD }}
script: |
echo "Hello, world!" >> ~/hello.txt