Fix SSH example on README.md (#182)

Fixed a syntax error with an extra '-', found while trying to use the example.
This commit is contained in:
Kindeep Singh Kargil 2020-02-23 12:47:41 -05:00 committed by GitHub
parent ef5f1630d3
commit 4258c3a701
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 }}