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
Can someone tell me why I get this error?
I've correctly configured the host, key and username and tried allowing all tcp traffic on port 22 on the server but the problem still persists.
Thanks!
yaml:
name: Build and Deploy on: push: branches: [main] jobs: deploy: runs-on: ubuntu-latest steps: - name: Deploy uses: appleboy/ssh-action@master with: host: ${{ secrets.SHH_HOST }} key: ${{ secrets.SSH_KEY }} username: ${{ secrets.SSH_USERNAME }} script: | whoami
The text was updated successfully, but these errors were encountered:
@lloydy500 Are you sure it's called secrets.SHH_HOST and not secrets.SSH_HOST
secrets.SHH_HOST
secrets.SSH_HOST
Sorry, something went wrong.
You sir, should be knighted.
Thanks so much!!!!
Issue resolved!
No branches or pull requests
Can someone tell me why I get this error?
I've correctly configured the host, key and username and tried allowing all tcp traffic on port 22 on the server but the problem still persists.
Thanks!
yaml:
name: Build and Deploy on: push: branches: [main] jobs: deploy: runs-on: ubuntu-latest steps: - name: Deploy uses: appleboy/ssh-action@master with: host: ${{ secrets.SHH_HOST }} key: ${{ secrets.SSH_KEY }} username: ${{ secrets.SSH_USERNAME }} script: | whoami
The text was updated successfully, but these errors were encountered: