Skip to content

Commit 61d92b5

Browse files
authored
fix(README.md): fix workflow syntax
1 parent fccac89 commit 61d92b5

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ jobs:
1919
steps:
2020
- name: curl
2121
uses: wei/curl@master
22-
args: https://httpbin.org/get
22+
with:
23+
args: https://httpbin.org/get
2324
```
2425

2526
```
@@ -30,7 +31,8 @@ jobs:
3031
steps:
3132
- name: curl
3233
uses: wei/curl@master
33-
args: -X POST https://httpbin.org/post
34+
with:
35+
args: -X POST https://httpbin.org/post
3436
```
3537

3638
```
@@ -42,7 +44,8 @@ jobs:
4244
- uses: actions/checkout@master
4345
- name: curl
4446
uses: wei/curl@master
45-
args: --upload-file .github/workflows/main.yml https://transfer.sh/main-workflow.yml
47+
with:
48+
args: --upload-file .github/workflows/main.yml https://transfer.sh/main-workflow.yml
4649
```
4750

4851
### Docker

0 commit comments

Comments
 (0)