From 6f15b0599d352f1a24a0cced3cbadc8c9e0b8c66 Mon Sep 17 00:00:00 2001 From: iSplasher Date: Tue, 10 Oct 2023 15:05:43 +0200 Subject: [PATCH] fix; --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7f1b996..5e72f10 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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" @@ -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 }}