Skip to content

Commit

Permalink
Disable search indexing in deploy process
Browse files Browse the repository at this point in the history
  • Loading branch information
gskril committed Dec 17, 2024
1 parent 880d65d commit 383ffbd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit 383ffbd

Please sign in to comment.