From 5b6c4bb4fa6cf72b59cdad3431c9bcd15a29109b Mon Sep 17 00:00:00 2001 From: Oz Okun <112382001+Oz-Okun@users.noreply.github.com> Date: Tue, 20 Jun 2023 10:27:52 +0200 Subject: [PATCH] fix $ sign missing --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index aba1a72..ed07534 100644 --- a/action.yml +++ b/action.yml @@ -101,4 +101,4 @@ runs: - name: Upload files to azure storage shell: bash run: | - curl --request POST --header "Authorization: Bearer ${{steps.token.outputs.token}}" --header 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36' --form Docs=@vuepress/docs/.vuepress/dist/Docs.zip "https://developer.bcc.no/UploadDoc?isPublic=${{inputs.public}}&auth={{inputs.authentication}}" \ No newline at end of file + curl --request POST --header "Authorization: Bearer ${{steps.token.outputs.token}}" --header 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36' --form Docs=@vuepress/docs/.vuepress/dist/Docs.zip "https://developer.bcc.no/UploadDoc?isPublic=${{inputs.public}}&auth=${{inputs.authentication}}"