Overhaul autozip using rsync (#59)

This commit is contained in:
Francesco Macaluso
2025-12-17 16:56:28 -05:00
committed by GitHub
parent 99f2156883
commit f40a6eb541
4 changed files with 116 additions and 0 deletions

18
act-secrets Normal file
View File

@@ -0,0 +1,18 @@
# 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"