From aed541cf4f5dcfbb190e67f4167741c5d2ff2a10 Mon Sep 17 00:00:00 2001 From: Vivek Teega Date: Thu, 1 Feb 2024 22:28:15 +0530 Subject: [PATCH] Using organisation level secrets for pipelines --- .github/workflows/deploy-api.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-api.yml b/.github/workflows/deploy-api.yml index 175c793..cf25238 100644 --- a/.github/workflows/deploy-api.yml +++ b/.github/workflows/deploy-api.yml @@ -9,8 +9,8 @@ jobs: uses: appleboy/ssh-action@v1.0.0 with: host: ${{ secrets.HOST }} - username: ${{ secrets.USERNAME }} - password: ${{ secrets.PASSWORD }} + username: ${{ secrets.P_USERNAME }} + password: ${{ secrets.P_PASSWORD }} port: ${{ secrets.PORT }} script: | cd ${{ secrets.APP_FOLDER }} && git pull