19 lines
		
	
	
		
			288 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			288 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
| workflow "Copy File Via SSH" {
 | |
|   on = "push"
 | |
|   resolves = [
 | |
|     "Executing remote ssh commands",
 | |
|   ]
 | |
| }
 | |
| 
 | |
| action "Executing remote ssh commands" {
 | |
|   uses = "appleboy/ssh-action@master"
 | |
|   secrets = [
 | |
|     "HOST",
 | |
|     "USERNAME",
 | |
|     "PASSWORD",
 | |
|   ]
 | |
|   args = [
 | |
|     "--script", "whoami",
 | |
|   ]
 | |
| }
 | 
