diff --git a/.github/workflows/build-deploy.yml b/.github/workflows/build-deploy.yml index b705c37..c028628 100644 --- a/.github/workflows/build-deploy.yml +++ b/.github/workflows/build-deploy.yml @@ -48,11 +48,10 @@ jobs: key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: ${{ runner.os }}-yarn- - - - name: Replace Webhook URLs in test file + - name: Replace Webhook URLs in Test File run: | - sed -i 's/WEBHOOK_URL_GOOGLE_CHAT/${{ secrets.WEBHOOK_URL_GOOGLE_CHAT }}/g' functions/test/e2e/chat.spec.ts - sed -i 's/WEBHOOK_URL_SLACK/${{ secrets.WEBHOOK_URL_SLACK }}/g' functions/test/e2e/chat.spec.ts + sed -i 's/WEBHOOK_URL_GOOGLE_CHAT/'"${{ secrets.WEBHOOK_URL_GOOGLE_CHAT }}"'/g' functions/test/e2e/chat.spec.ts + sed -i 's/WEBHOOK_URL_SLACK/'"${{ secrets.WEBHOOK_URL_SLACK }}"'/g' functions/test/e2e/chat.spec.ts - run: yarn --cwd functions install