Skip to content

Commit

Permalink
trying to cast to number
Browse files Browse the repository at this point in the history
  • Loading branch information
AmebaBrain committed Jun 9, 2024
1 parent 5bf7ed7 commit a006a4f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ jobs:
needs: build
uses: ./.github/workflows/deploy_job.yml
with:
REMOTE_HOST: "${{ vars.DEV_SERVER_HOST }}"
REMOTE_PORT: "${{ vars.DEV_SSH_PORT }}"
REMOTE_USER: "${{ vars.DEV_SERVER_USER}}"
REMOTE_HOST: ${{ vars.DEV_SERVER_HOST }}
REMOTE_PORT: ${{ fromJSON(vars.DEV_SSH_PORT) }}
REMOTE_USER: ${{ vars.DEV_SERVER_USER}}
secrets:
REMOTE_SSH_KEY: ${{ secrets.DEV_PRIVATE_KEY }}
#BASE_PATH: /var/www/html
Expand All @@ -72,9 +72,9 @@ jobs:
needs: build
uses: ./.github/workflows/deploy_job.yml
with:
REMOTE_HOST: "${{ vars.PRD_SERVER_HOST }}"
REMOTE_PORT: "${{ vars.PRD_SSH_PORT }}"
REMOTE_USER: "${{ vars.PRD_SERVER_USER}}"
REMOTE_HOST: ${{ vars.PRD_SERVER_HOST }}
REMOTE_PORT: ${{ vars.PRD_SSH_PORT }}
REMOTE_USER: ${{ vars.PRD_SERVER_USER}}
secrets:
REMOTE_SSH_KEY: ${{ secrets.PRD_PRIVATE_KEY }}
#BASE_PATH: /var/www/html
Expand Down

0 comments on commit a006a4f

Please sign in to comment.