Skip to content

testing deployment some more #2

testing deployment some more

testing deployment some more #2

Workflow file for this run

name: Deploy to VPS
on:
push:
branches: ["main"]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Deploy to VPS
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SSH_HOST }}
key: ${{ secrets.SSH_KEY }}
username: ${{ secrets.SSH_USERNAME }}
script: |
mkdir test
cd test
echo "Hello, World!" > hello.txt