curl icon indicating copy to clipboard operation
curl copied to clipboard

Wraps the curl CLI to be used in Github Actions

Results 8 curl issues
Sort by recently updated
recently updated
newest added

Hi, thank you for this nice Github Action. Unfortunately it does not work on Windows. It could function on Windows by using the preinstalled msys2's wget.exe executable at C:\msys64\usr\bin\wget.exe (not...

``` - name: Verify with curl uses: wei/[email protected] with: args: http://localhost:5000/chat --connect-timeout 5 --max-time 10 --retry 5 --retry-delay 0 --retry-max-time 40 -H "Content-Type:application/json" -d '{"message":"I am crazy"}' ``` I still...

Getting error " mapping values are not allowed in this context" while having workflow as given below < on: push jobs: curl: runs-on: ubuntu-latest steps: - name: curl uses: wei/curl@master...

I have a POST action which by design returns HTTP 406, however the curl action does not seem to fail like advertised, but action workflow passes on. Are there any...

I'm trying this code ```yml - name: Download backup archives uses: wei/[email protected] with: args: ${{ secrets.ARCHIVE_BACKUP }} -O ``` Download an empty file ` -rw-r--r-- 1 root root 0 Jul...

Hi, I'm executing your github action with this code: ``` - name: send md5sum file to gitlab release uses: wei/curl@v1 with: args: "-X POST \"https://gitlab.com/api/v4/projects/XXX/releases/A.B.C/assets/links\" -H \"Private-Token: ${{ secrets.GITLABTOKEN }}\"...

name: Download file uses: wei/curl@master with: args: -H "Authorization:\token ${{secrets.GITHUB_TOKEN}}" -X GET https://api.github.com/repos/something/something/zipball/master/ --output something.zip

I want to create an action that will allow me to get timing info of a specific run. I asked about that on GitHub community page and got a couple...