Add self-hosted option to action (#52)

+ This skips over the SSH configuration part of the action.
+ This is because self-hosted runners would typically have SSH already running causing ssh-agent command to throw an error (process already exists/port in use)
This commit is contained in:
Thomas Ali 2023-01-10 13:47:26 +00:00 committed by GitHub
commit d12c16f961
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 0 deletions

View file

@ -19,6 +19,10 @@
# Required.
dep: deploy
# Option to skip over the SSH setup/configuration
# Self hosted runners don't need the SSH configuration or the SSH agent to be started
self-hosted: false
# Private key for connecting to remote hosts. To generate private key:
# `ssh-keygen -o -t rsa -C 'action@deployer.org'`.
# Optional.