Skip to content

Commit 018af53

Browse files
Merge pull request #48 from marcelloromani/master
fix indentation in readme yaml snippets (#1)
2 parents 2d32ef6 + b64a42a commit 018af53

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

readme.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@ Simple GitHub Action to copy a folder or single file to a remote server using SS
88

99
```yml
1010
- name: Copy folder content recursively to remote
11-
uses: garygrossgarten/github-action-scp@release
12-
with:
13-
local: test
14-
remote: scp/directory
15-
host: ${{ secrets.HOST }}
16-
username: ${{ secrets.SSH_USER }}
17-
password: ${{ secrets.PASSWORD }}
11+
uses: garygrossgarten/github-action-scp@release
12+
with:
13+
local: test
14+
remote: scp/directory
15+
host: ${{ secrets.HOST }}
16+
username: ${{ secrets.SSH_USER }}
17+
password: ${{ secrets.PASSWORD }}
1818

1919
```
2020

2121
**Copy a single file to a remote server**
2222

2323
```yml
2424
- name: Copy single file to remote
25-
uses: garygrossgarten/github-action-scp@release
26-
with:
27-
local: test/oof.txt
28-
remote: scp/single/oof.txt
29-
host: ${{ secrets.HOST }}
30-
username: ${{ secrets.SSH_USER }}
31-
password: ${{ secrets.PASSWORD }}
25+
uses: garygrossgarten/github-action-scp@release
26+
with:
27+
local: test/oof.txt
28+
remote: scp/single/oof.txt
29+
host: ${{ secrets.HOST }}
30+
username: ${{ secrets.SSH_USER }}
31+
password: ${{ secrets.PASSWORD }}
3232

3333
```
3434

0 commit comments

Comments
 (0)