Skip to content

Commit

Permalink
use curl.exe instead of curl
Browse files Browse the repository at this point in the history
  • Loading branch information
pit-ray committed Oct 8, 2023
1 parent 8c5581c commit 95f962b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,10 @@ jobs:
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"

- name: Submit tarball to Coverity
run: curl --form token="${{env.TOKEN}}" --form email="${{env.EMAIL}}" --form file="@build/cov-int.tgz" --form version="${{steps.vars.outputs.sha_short}}" --form description="Automatic submission with GitHub Actions" "https://scan.coverity.com/builds?project=pit-ray%2Fwin-vind"
run: curl.exe \
--form token="${{env.TOKEN}}" \
--form email="${{env.EMAIL}}" \
--form file="@build/cov-int.tgz" \
--form version="${{steps.vars.outputs.sha_short}}" \
--form description="Automatic submission with GitHub Actions" \
"https://scan.coverity.com/builds?project=pit-ray%2Fwin-vind"

0 comments on commit 95f962b

Please sign in to comment.