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
I want to run an ssh script that returns a value -> res=$(ssh USER@HOST "echo 'test'")
Is this possible?
name: variable test on: push jobs: prisma-migrate: runs-on: ubuntu-latest steps: - name: set variable from remote host id: var uses: appleboy/ssh-action@master with: host: ${{ secrets.HOST }} username: ${{ secrets.USER }} key: ${{ secrets.KEY}} script: | value="test" echo ::set-output name=res::"$value" - name: test postgres_cluster run: echo "${{ steps.var.outputs.res }}"
The text was updated successfully, but these errors were encountered:
Ever found a solution for this?
Sorry, something went wrong.
No branches or pull requests
I want to run an ssh script that returns a value -> res=$(ssh USER@HOST "echo 'test'")
Is this possible?
The text was updated successfully, but these errors were encountered: