# This file serves as a template to define **GitHub Secrets** # for local testing using the 'act' command-line tool. # # These variables contain confidential information and are used to # authenticate with external services (like SSH, APIs, etc.) via # the syntax ${{ secrets.KEY_NAME }}. # CRITICAL: The private key, with all literal newlines replaced by '\n'. VPS_SSH_KEY="-----BEGIN OPENSSH PRIVATE KEY-----\n...-----END OPENSSH PRIVATE KEY-----" # The username used to log into the remote host. VPS_USERNAME="vattic" # The port used to log into the remote host. VPS_PORT="22" # The IP address or domain name of the remote server. VPS_HOST_IP="127.0.0.1"