LinkIcon dropdown open by default #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Algolia indexing | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "docs/**" | |
jobs: | |
index: | |
runs-on: ubuntu-latest | |
name: Index docs with Algolia | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v4 | |
- name: Algolia Crawler | |
uses: algolia/[email protected] | |
id: index_after_push | |
with: | |
crawler-user-id: ${{ secrets.CRAWLER_USER_ID }} | |
crawler-api-key: ${{ secrets.CRAWLER_API_KEY }} | |
algolia-app-id: ${{ secrets.ALGOLIA_APP_ID }} | |
algolia-api-key: ${{ secrets.ALGOLIA_API_KEY }} | |
site-url: "https://sphinxawesome.xyz" | |
crawler-name: "sphinxawesome" |