File upload (#20)

* Add Support for FileUpload
This commit is contained in:
Frank Jogeleit
2021-01-24 13:14:13 +01:00
committed by GitHub
parent de202bb090
commit b6bb4fa030
8 changed files with 1715 additions and 7 deletions

View File

@@ -42,3 +42,16 @@ jobs:
method: 'GET'
username: 'postman'
password: 'password'
- name: Create Test File
id: image
run: |
echo "test" > testfile.txt
- name: Request Postment Echo POST Multipart
uses: ./
with:
url: 'https://postman-echo.com/post'
method: 'POST'
data: '{ "key": "value" }'
files: '{ "file": "${{ github.workspace }}/testfile.txt" }'