From 3b5032cb14de98969757ae81f5272d6bf0944fd3 Mon Sep 17 00:00:00 2001 From: Alex <12097569+nialexsan@users.noreply.github.com> Date: Wed, 2 Aug 2023 16:39:16 -0400 Subject: [PATCH] use https (#179) * use https * fix port * fix scrape env * fix job name --- .github/workflows/deploy.yml | 4 ++-- .github/workflows/scrape.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 43ab75d7b3..a329c78e42 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -53,10 +53,10 @@ jobs: host: ${{vars.TYPESENSE_NODE}} # The port on which your Typesense server is listening. Optional. Default: 8108. - port: 8108 + port: 443 # The protocol to use when connecting to your Typesense server. Optional. Default: http. - protocol: http + protocol: https # The path to your DocSearch config file. Optional. Default: docsearch.config.json. config: docsearch.config.json diff --git a/.github/workflows/scrape.yml b/.github/workflows/scrape.yml index b398ce16bd..f57408d9a8 100644 --- a/.github/workflows/scrape.yml +++ b/.github/workflows/scrape.yml @@ -9,8 +9,8 @@ env: TYPESENSE_SEARCH_ONLY_API_KEY: ${{secrets.TYPESENSE_SEARCH_ONLY_API_KEY}} jobs: - deploy: - name: Deploy to GitHub Pages + crawl: + name: Crawl Pages runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -25,10 +25,10 @@ jobs: host: ${{vars.TYPESENSE_NODE}} # The port on which your Typesense server is listening. Optional. Default: 8108. - port: 8108 + port: 443 # The protocol to use when connecting to your Typesense server. Optional. Default: http. - protocol: http + protocol: https # The path to your DocSearch config file. Optional. Default: docsearch.config.json. config: docsearch.config.json