Update the Algolia search index #58
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: Update the Algolia search index | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 2 * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
lfs: false | |
path: website | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
working-directory: website | |
- name: Check recent commit | |
id: checkcommit | |
working-directory: website | |
run: | | |
LASTEST_COMMIT=$(git log -1 --format=%ct) | |
CURRENT_TIME=$(date +%s) | |
TIME_DIFF=$((CURRENT_TIME - LATEST_COMMIT)) | |
if [ $TIME_DIFF -gt 86400 ]; then | |
echo "No commit within 24 hours." | |
echo "recent_commit=false" >> "$GITHUB_OUTPUT" | |
else | |
echo "recent_commit=true" >> "$GITHUB_OUTPUT" | |
fi | |
- name: Build website and update Algolia index | |
if: ${{ github.event_name == 'workflow_dispatch' || steps.checkcommit.outputs.recent_commit == 'true' }} | |
working-directory: website | |
env: | |
JEKYLL_ENV: production | |
run: ALGOLIA_API_KEY=${{ secrets.ALGOLIA_API_KEY }} bundle exec jekyll algolia |