Moved ESTD to certified partners and removed Juno #1394
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
# Updates the Algolia search index on all content changes | |
name: Update Algolia index | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- .github/workflows/algolia.yml | |
- content/**.txt | |
- site/config/search.php | |
- site/models/** | |
- site/plugins/** | |
- scripts/algolia-index | |
jobs: | |
algolia: | |
name: Update Algolia index | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel previous workflow runs | |
uses: styfle/cancel-workflow-action@01ce38bf961b4e243a6342cbade0dbc8ba3f0432 # pin@v0 | |
- name: Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3 | |
- name: Setup PHP environment | |
uses: shivammathur/setup-php@7fdd3ece872ec7ec4c098ae5ab7637d5e0a96067 # pin@v2 | |
with: | |
php-version: "8.3" | |
extensions: mbstring, intl | |
coverage: none | |
ini-values: memory_limit=-1 | |
- name: Update the Algolia index | |
run: scripts/algolia-index | |
env: | |
ALGOLIA_KEY: ${{ secrets.ALGOLIA_KEY }} |