mirror of
				https://github.com/Burnett01/rsync-deployments.git
				synced 2025-11-04 01:19:06 +01:00 
			
		
		
		
	Ability to configure legacy rsa hostkeys support for
OpenSSH servers < 8.8.
Related to #24 and  9603fc8
		
	
			
		
			
				
	
	
		
			45 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: 'Rsync Deployments Action'
 | 
						|
description: 'GitHub Action for deploying code via rsync over ssh'
 | 
						|
author: 'Burnett01'
 | 
						|
inputs:
 | 
						|
  switches:
 | 
						|
    description: 'The switches'
 | 
						|
    required: true
 | 
						|
  rsh:
 | 
						|
    description: 'The remote shell argument'
 | 
						|
    required: false
 | 
						|
    default: ''
 | 
						|
  legacy_allow_rsa_hostkeys:
 | 
						|
    description: 'Enables support for legacy RSA host keys on OpenSSH 8.8+'
 | 
						|
    required: false
 | 
						|
    default: 'false'
 | 
						|
  path:
 | 
						|
    description: 'The local path'
 | 
						|
    required: false
 | 
						|
    default: ''
 | 
						|
  remote_path:
 | 
						|
    description: 'The remote path'
 | 
						|
    required: true
 | 
						|
  remote_host:
 | 
						|
    description: 'The remote host'
 | 
						|
    required: true
 | 
						|
  remote_port:
 | 
						|
    description: 'The remote port'
 | 
						|
    required: false
 | 
						|
    default: 22
 | 
						|
  remote_user:
 | 
						|
    description: 'The remote user'
 | 
						|
    required: true
 | 
						|
  remote_key:
 | 
						|
    description: 'The remote key'
 | 
						|
    required: true
 | 
						|
  remote_key_pass:
 | 
						|
    description: 'The remote key passphrase'
 | 
						|
    required: false
 | 
						|
    default: ''
 | 
						|
runs:
 | 
						|
  using: 'docker'
 | 
						|
  image: 'Dockerfile'
 | 
						|
branding:
 | 
						|
  icon: 'send'  
 | 
						|
  color: 'gray-dark'
 |