From 383ffbdb8d75f3ce4d66f403f3681145eff8c965 Mon Sep 17 00:00:00 2001 From: Greg Skriloff <35093316+gskril@users.noreply.github.com> Date: Mon, 16 Dec 2024 19:28:20 -0500 Subject: [PATCH] Disable search indexing in deploy process --- .github/workflows/deploy.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9fedeec..f4bf0f3 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -60,10 +60,10 @@ jobs: SEARCH_JSON=$(cat blog/out/search.json) echo "::set-output name=search_json::${SEARCH_JSON}" - - name: Deploy search index - uses: fjogeleit/http-request-action@v1 - with: - url: 'https://search.v3x.systems/indexes/ens-blog/documents?primaryKey=slug' - method: 'POST' - bearerToken: ${{ secrets.SEARCH_TOKEN }} - data: ${{ steps.read_search_json.outputs.search_json }} + # - name: Deploy search index + # uses: fjogeleit/http-request-action@v1 + # with: + # url: 'https://search.v3x.systems/indexes/ens-blog/documents?primaryKey=slug' + # method: 'POST' + # bearerToken: ${{ secrets.SEARCH_TOKEN }} + # data: ${{ steps.read_search_json.outputs.search_json }}