#16 Init workflow for VyOS deployments

- Attempts to SSH into host and create a hello text file.
This commit is contained in:
Joey Hafner 2024-10-24 15:32:33 -07:00
parent 85d3343285
commit f0221b363f
No known key found for this signature in database
2 changed files with 10 additions and 10 deletions

View File

@ -12,8 +12,8 @@ jobs:
- name: SSH into host - name: SSH into host
uses: appleboy/ssh-action@v1.0.3 uses: appleboy/ssh-action@v1.0.3
with: with:
host: ${{ secrets.HOST_DOMAIN }} host: 192.168.1.1
username: ${{ secrets.HOST_USERNAME }} username: vyos
key: ${{ secrets.RUNNER_SSH_PRIVATEKEY }} key: ${{ secrets.RUNNER_SSH_PRIVATEKEY }}
script: | script: |
echo "Hello, world!" >> ~/hello.txt echo "Hello, world!" >> ~/hello.txt

File diff suppressed because one or more lines are too long