Skip to content

Commit

Permalink
Use specific version of scp as the latest is broken
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmine committed May 7, 2023
1 parent 0cd4f3e commit 5663db7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with:
name: dist
- name: Delete old files
uses: appleboy/ssh-action@master
uses: appleboy/ssh-action@v0.1.3
with:
host: ${{ vars.DEPLOY_HOST }}
username: ${{ vars.DEPLOY_USERNAME }}
Expand All @@ -41,7 +41,7 @@ jobs:
cd ${{ vars.DEPLOY_TARGET_STAGING }}
rm -rf * .nojekyll
- name: Upload files
uses: appleboy/scp-action@master
uses: appleboy/scp-action@v0.1.3
with:
host: ${{ vars.DEPLOY_HOST }}
username: ${{ vars.DEPLOY_USERNAME }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
with:
name: dist
- name: Delete old files
uses: appleboy/ssh-action@master
uses: appleboy/ssh-action@v0.1.3
with:
host: ${{ vars.DEPLOY_HOST }}
username: ${{ vars.DEPLOY_USERNAME }}
Expand All @@ -44,7 +44,7 @@ jobs:
cd ${{ vars.DEPLOY_TARGET_PROD }}
rm -rf *
- name: Upload files
uses: appleboy/scp-action@master
uses: appleboy/scp-action@v0.1.3
with:
host: ${{ vars.DEPLOY_HOST }}
username: ${{ vars.DEPLOY_USERNAME }}
Expand Down

0 comments on commit 5663db7

Please sign in to comment.