Index with Algolia #9
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: Index with Algolia | |
on: workflow_dispatch | |
jobs: | |
bundle-algolia: | |
runs-on: ubuntu-latest | |
env: | |
ALGOLIA_API_KEY: ${{ secrets.ALGOLIA_API_KEY }} | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Set up Ruby, install and cache bundle | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Index with Algolia | |
run: bundle exec jekyll algolia --verbose |