name: Fix SSH Permissions on: push: branches: [main] jobs: fix-ssh: runs-on: ubuntu-latest timeout-minutes: 2 steps: - name: Fix debian user UID and SSH run: | sudo chown -R debian:debian /home/debian sudo chmod 700 /home/debian/.ssh sudo chmod 600 /home/debian/.ssh/authorized_keys sudo systemctl restart sshd echo "SSH fixed"