Production: fix workflows command
All checks were successful
Run Action to Production / run pull to sync on target message (push) Successful in 10s

This commit is contained in:
Fiky B 2024-03-02 18:32:56 +07:00
parent fe45578e22
commit 0049d81f18

View File

@ -17,14 +17,7 @@ jobs:
# https://stackoverflow.com/a/70447517 # 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 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 - name: connect and pull
run: | run: ssh ${{ secrets.SSH_USER }}@${{ secrets.SSH_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"
ssh ${{ secrets.SSH_USER }}@${{ secrets.SSH_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 - name: cleanup
run: rm -rf ~/.ssh run: rm -rf ~/.ssh
- name: cleanup - name: cleanup