From a246e72b4ecdeadb63c1f002f653609c3aec1315 Mon Sep 17 00:00:00 2001 From: Wilson Lin Date: Wed, 22 Jun 2022 01:44:22 +1000 Subject: [PATCH] Fix Deno script Content-Type --- .github/workflows/deno.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deno.yml b/.github/workflows/deno.yml index a1a57a2..2ec2ccb 100644 --- a/.github/workflows/deno.yml +++ b/.github/workflows/deno.yml @@ -49,7 +49,7 @@ jobs: ./b2 authorize-account ${{ secrets.CICD_CLI_B2_KEY_ID }} ${{ secrets.CICD_CLI_B2_APPLICATION_KEY }} for f in wasm/pkg/*; do if [[ "$f" == *.js ]]; then - content_type='application/js' + content_type='text/javascript' elif [[ "$f" == *.wasm ]]; then content_type='application/wasm' else