We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hi, thank you for this action. now i dont need to login to server to pull latest repo
here is yaml config
` name: Run SSH Command
on: [push]
jobs: build: runs-on: ubuntu-latest steps: - name: Update Server Repo uses: maddox/actions/ssh@master env: PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} HOST: ${{ secrets.HOST }} USER: ${{ secrets.USER }} with: args: git pull or any code you want to run ` Note - you can add more options please refer yaml config documentations
The text was updated successfully, but these errors were encountered:
@deepaksp , how to generate private key?
Sorry, something went wrong.
Quick reformat for future peeps.
- name: Update Server Repo uses: maddox/actions/ssh@master env: PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} HOST: ${{ secrets.HOST }} USER: ${{ secrets.USER }} with: args: git pull
No branches or pull requests
hi, thank you for this action. now i dont need to login to server to pull latest repo
here is yaml config
`
name: Run SSH Command
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Update Server Repo
uses: maddox/actions/ssh@master
env:
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
HOST: ${{ secrets.HOST }}
USER: ${{ secrets.USER }}
with:
args: git pull or any code you want to run
`
Note - you can add more options please refer yaml config documentations
The text was updated successfully, but these errors were encountered: