We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91a5312 commit 016ef56Copy full SHA for 016ef56
entrypoint.sh
@@ -1,7 +1,7 @@
1
#!/bin/sh -l
2
3
-curl --location --request POST "https://api.elmah.io/v3/sourcemaps/$INPUT_LOGID?api_key=$INPUT_APIKEY" \
4
---header 'Content-Type: multipart/form-data' \
5
---form Path=$INPUT_PATH \
6
---form SourceMap=$INPUT_SOURCEMAP \
7
---form MinifiedJavaScript=$INPUT_MINIFIEDJAVASCRIPT
+curl -X POST \
+ -F Path=$INPUT_PATH \
+ -F SourceMap=@$INPUT_SOURCEMAP;type=application/json \
+ -F MinifiedJavaScript=@$INPUT_MINIFIEDJAVASCRIPT;type=text/javascript \
+ https://api.elmah.io/v3/sourcemaps/$INPUT_LOGID?api_key=$INPUT_APIKEY
0 commit comments