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
The step in the workflow:
- name: provisioning test environment uses: appleboy/ssh-action@v1.0.3 with: host: ${{ steps.host.outputs.host }} username: fedora key_path: key.pem script: provision.sh
But, the following does work:
- run: | ssh -T -o StrictHostKeyChecking=no -i key.pem fedora@${{ steps.host.outputs.host }} bash -c ls
The text was updated successfully, but these errors were encountered:
@lmilbaum can you help to try appleboy/ssh-action@master version? Or add the source of key.pem file to the secret key.
appleboy/ssh-action@master
key.pem
Sorry, something went wrong.
Sorry. I can't because I took another approach which doesn't utilize this action.
i got same issue you can't set chmod 0600 key.pem
chmod 0600 key.pem
No branches or pull requests
The step in the workflow:
But, the following does work:
The text was updated successfully, but these errors were encountered: