Production: workflow fix
Some checks failed
Run Action to Production / run pull to sync on target message (push) Failing after 3s

This commit is contained in:
Fiky B 2024-03-02 18:29:00 +07:00
parent 05cf4bb317
commit fd00fa0579

View File

@ -17,13 +17,6 @@ jobs:
# https://stackoverflow.com/a/70447517
run: install -m 600 -D /dev/null ~/.ssh/id_rsa && echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa && ssh-keyscan -H ${{ secrets.SSH_HOST }} > ~/.ssh/known_hosts
- name: connect and pull
run: |
ssh ${{ secrets.SSH_USER }}@${{ secrets.HOST }}
"if cd /home/fikyb-dev/htdocs/pintu2;
then git checkout master && git pull
&& composer install && php artisan key:generate && php artisan migrate
&& exit;
else git clone ${{ gitea.repository }} && exit;
fi"
run: ssh ${{ secrets.SSH_USER }}@${{secrets.HOST}} "if cd /home/fikyb-dev/htdocs/pintu2; then git checkout master && git pull && composer install && php artisan key:generate && php artisan migrate && exit; else git clone ${{ gitea.repository }} && exit; fi"
- name: cleanup
run: rm -rf ~/.ssh