8000 GitHub - matheusvanzan/sshpass-action at v1
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

matheusvanzan/sshpass-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SSHPASS Github Action

Github Action to send commands via SSHPASS

Usage

Example usage can be found at sshpass-action-example

- name: Run sshpass commands
  uses: matheusvanzan/sshpass-action@v1
  with:
    host: ${{ secrets.SERVER_HOST }}
    username: ${{ secrets.SERVER_USERNAME }}
    password: ${{ secrets.SERVER_PASSWORD }}
    run: |
      # your 
      # commands
      # here
0