From bd4ee993968fbc3b896a38c94f84481e8aa74a40 Mon Sep 17 00:00:00 2001 From: Jeremy Likness Date: Wed, 29 Jan 2020 13:57:43 -0800 Subject: [PATCH] fix escape chars --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1ad3f1a..2f7070e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -52,7 +52,7 @@ jobs: - name: Fix Base URL run: | sed -i "s/base href=\"\/\"/base href=\"\/vanillajs\/\"/g" ${{ env.OUTPUT_PATH }}index.html - sed -i "s/scope: \'\/\'/scope: \'\/vanillajs/\'/g" ${{ env.OUTPUT_PATH }}index.html + sed -i "s/scope: \'\/\'/scope: \'\/vanillajs\/\'/g" ${{ env.OUTPUT_PATH }}index.html - name: Deploy to Azure Storage run: az storage blob upload-batch --source ${{ env.OUTPUT_PATH }} --destination \$web/vanillajs --account-name ${STORAGE_NAME}