Restart the service
Build and copy to prod / build-and-copy (push) Failing after 36s Details

This commit is contained in:
Lewis Dale 2024-05-05 20:35:02 +01:00
parent a0b22059a0
commit 3dc5e5cf7f
1 changed files with 3 additions and 1 deletions

View File

@ -19,4 +19,6 @@ jobs:
key: ${{ secrets.SSH_KEY }}
known_hosts: ${{ secrets.SSH_KNOWN_HOSTS }}
- name: Copy to prod
run: scp -rp dist/* ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:oopsie/
run: scp -rp dist/* ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:oopsie/
- name: Restart the service
run: ssh ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }} -o RemoteCommand="systemctl --user restart oopsie_service.service"