Skip to content

Commit

Permalink
fix(cd): use ${{ env.*_PORT }} instead of $*_PORT
Browse files Browse the repository at this point in the history
  • Loading branch information
bas-kirill committed Jul 22, 2024
1 parent 034f720 commit 3090f6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
uses: appleboy/[email protected]
env:
GIT_COMMIT_SHA: ${{ github.sha }}
DEV_PORT: $DEV_PORT
DEV_PORT: ${{ env.DEV_PORT }}
with:
host: ${{ secrets.SERVER_HOST }}
username: ${{ secrets.SERVER_USERNAME }}
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
uses: appleboy/[email protected]
env:
GIT_COMMIT_SHA: ${{ github.sha }}
STAGING_PORT: $STAGING_PORT
STAGING_PORT: ${{ env.STAGING_PORT }}
with:
host: ${{ secrets.SERVER_HOST }}
username: ${{ secrets.SERVER_USERNAME }}
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
uses: appleboy/[email protected]
env:
GIT_COMMIT_SHA: ${{ github.sha }}
PROD_PORT: $PROD_PORT
PROD_PORT: ${{ env.PROD_PORT }}
with:
host: ${{ secrets.SERVER_HOST }}
username: ${{ secrets.SERVER_USERNAME }}
Expand Down

0 comments on commit 3090f6b

Please sign in to comment.