Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
nicomaht committed Nov 7, 2023
1 parent ebbd7c5 commit 3a80bf5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
mkdir -p ~/.ssh
touch ~/.ssh/known_hosts
ssh-keyscan ${{ secrets.SECRET_HOST }} >> ~/.ssh/known_hosts
ssh -i ./p.key -p ${{ secrets.SECRET_PORT }} ${{ secrets.SECRET_USER }}@${{ secrets.SECRET_HOST }} "cd /project/Swissdle
eval "$(ssh-agent -s)"
ssh-add ./p.key
ssh -i -p ${{ secrets.SECRET_PORT }} ${{ secrets.SECRET_USER }}@${{ secrets.SECRET_HOST }} "cd /project/Swissdle
&& git pull origin main
&& cd backend-laravel && composer install
&& cd ../frontend-vue && npm install && npm run build"

0 comments on commit 3a80bf5

Please sign in to comment.