chore: change uptime kuma and add healthchecks.io #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SSH - Execute commands on remote server | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: CHECKOUT REPOSITORY | |
uses: actions/checkout@v2 | |
- name: SETUP SSH | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
- name: Execute SSH command | |
run: | | |
ssh user@server "echo 'Hello, world!'" |