Setup
- Create a new Linux Users called
webrunner 
- Click New self-hosted Runner and then copy the tutorial
Service
Create a systemD service
[Unit]
Description=Run run.sh as webrunner
After=network.target
[Service]
Type=simple
User=webrunner
WorkingDirectory=/home/webrunner/actions-runner
ExecStart=/home/webrunner/actions-runner/run.sh
Restart=on-failure
[Install]
WantedBy=multi-user.target