From 4258c3a701c746ca25b83117a0784a70ebd14acf Mon Sep 17 00:00:00 2001 From: Kindeep Singh Kargil <32722218+kindeep@users.noreply.github.com> Date: Sun, 23 Feb 2020 12:47:41 -0500 Subject: [PATCH] Fix SSH example on README.md (#182) Fixed a syntax error with an extra '-', found while trying to use the example. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7e4a3ba9..d5983543 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ jobs: npm run-script build - name: Install SSH Client - - uses: webfactory/ssh-agent@v0.2.0 # This step installs the ssh client into the workflow run. There's many options available for this on the action marketplace. + uses: webfactory/ssh-agent@v0.2.0 # This step installs the ssh client into the workflow run. There's many options available for this on the action marketplace. with: ssh-private-key: ${{ secrets.DEPLOY_KEY }}