chore: change uptime kuma and add healthchecks.io #1
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
# Write an action to copy files usign scp from github to the server | |
name: SCP - Copy files to remote server | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
copy_files: | |
runs-on: ubuntu-latest | |
steps: | |
- name: CHECKOUT REPOSITORY | |
uses: actions/checkout@v2 | |
- name: COPY FILES TO SERVER | |
run: | | |
scp -r ${{ github.workspace }}/* user@server:/path/to/destination |