Skip to content

Commit

Permalink
fix;
Browse files Browse the repository at this point in the history
  • Loading branch information
iSplasher committed Oct 10, 2023
1 parent 39efd9e commit 6f15b05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Copy run.sh
uses: appleboy/scp-action@master
with:
host: ${{ vars.DEPLOY_HOST }}
username: ${{ vars.GH_SSH_USERNAME }}
key: ${{ secrets.GH_SSH_PRIVATE_KEY }}
port: ${{ secrets.DEPLOY_PORT }}
port: ${{ vars.DEPLOY_PORT }}
source: "run.sh"
target: "${{ env.DEPLOY_PATH }}/run.sh"

Expand All @@ -61,7 +61,7 @@ jobs:
host: ${{ vars.DEPLOY_HOST }}
username: ${{ vars.GH_SSH_USERNAME }}
key: ${{ secrets.GH_SSH_PRIVATE_KEY }}
port: ${{ secrets.DEPLOY_PORT }}
port: ${{ vars.DEPLOY_PORT }}
script_stop: false # setting this to true does not work well as of 0.1.10. most likely a bug in the action
script: |
cd ${{ env.DEPLOY_PATH }}
Expand Down

0 comments on commit 6f15b05

Please sign in to comment.