diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index 1421e40..298d58d 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -15,7 +15,7 @@ jobs: host: ${{ secrets.HOST }} username: ${{ secrets.USERNAME }} key: ${{ secrets.PRIVATE_KEY }} - port: 22 + port: ${{ secrets.PORT }} script: | cd ctf-prod git pull origin main diff --git a/.github/workflows/deploy-test.yml b/.github/workflows/deploy-test.yml index b6c0338..73647c5 100644 --- a/.github/workflows/deploy-test.yml +++ b/.github/workflows/deploy-test.yml @@ -15,7 +15,7 @@ jobs: host: ${{ secrets.HOST }} username: ${{ secrets.USERNAME }} key: ${{ secrets.PRIVATE_KEY }} - port: 22 + port: ${{ secrets.PORT }} script: | cd ctf-test git pull origin dev