Using organisation level secrets for pipelines

This commit is contained in:
Vivek Teega 2024-02-01 22:28:15 +05:30 committed by GitHub
parent 4551364596
commit aed541cf4f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,8 +9,8 @@ jobs:
uses: appleboy/ssh-action@v1.0.0 uses: appleboy/ssh-action@v1.0.0
with: with:
host: ${{ secrets.HOST }} host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }} username: ${{ secrets.P_USERNAME }}
password: ${{ secrets.PASSWORD }} password: ${{ secrets.P_PASSWORD }}
port: ${{ secrets.PORT }} port: ${{ secrets.PORT }}
script: | script: |
cd ${{ secrets.APP_FOLDER }} && git pull cd ${{ secrets.APP_FOLDER }} && git pull