Skip to content

Commit

Permalink
Multiple times SCP has timed out after 16 minuets.
Browse files Browse the repository at this point in the history
If no response in 60seconds, something is wrong
  • Loading branch information
calaldees committed Nov 15, 2024
1 parent c0025df commit a79dcc1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/deploy_website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,24 @@ jobs:

- name: scp_api
uses: appleboy/scp-action@master
timeout-minutes: 1
with:
host: computingteachers.uk
username: computingteachers
key: ${{ secrets.DEPLOY_SSH_KEY }}
source: "teachprogramming/lib/api/v1"
strip_components: 3
target: "computingteachers.uk/api"
command_timeout: 1m

- name: scp_static
uses: appleboy/scp-action@master
timeout-minutes: 1
with:
host: computingteachers.uk
username: computingteachers
key: ${{ secrets.DEPLOY_SSH_KEY }}
source: "teachprogramming/lib/static"
strip_components: 2
target: "computingteachers.uk"
command_timeout: 1m

0 comments on commit a79dcc1

Please sign in to comment.