Skip to content

Commit

Permalink
Added deploy action on push or manually triggered
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBootle authored Aug 2, 2023
1 parent d9e6f95 commit 78cb0a9
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: deploy
run-name: Deploy to Pi
on: [push, workflow_dispatch]
jobs:
deploy-to-server:
runs-on: ubuntu-latest
steps:
- name: ssh into remote server
uses: appleboy/ssh-action@v1.0.0
with:
host: ssh.bootle.tech
username: bootletoolshome
password: ${{ secrets.SAYSOMETHINGPASSWORD }}
port: 22
script: update

0 comments on commit 78cb0a9

Please sign in to comment.