Update build_jekyll_with_pagefind.yml #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: Build Jekyll Site with Pagefind | |
on: | |
push: | |
branches: ["master"] | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Pages | |
uses: actions/configure-pages@v5 | |
- name: Build | |
uses: actions/jekyll-build-pages@v1 | |
- name: Get Actions user id | |
id: get_uid | |
run: | | |
actions_user_id=`id -u $USER` | |
echo $actions_user_id | |
echo "uid=$actions_user_id" >> $GITHUB_OUTPUT | |
- name: Correct Ownership in GITHUB_WORKSPACE directory | |
uses: peter-murray/reset-workspace-ownership-action@v1 | |
with: | |
user_id: ${{ steps.get_uid.outputs.uid }} | |
- name: Index pagefind | |
run: | | |
wget https://github.com/CloudCannon/pagefind/releases/download/v${{ vars.PAGEFIND_VERSION }}/pagefind_extended-v1.1.0-x86_64-unknown-linux-musl.tar.gz | |
tar -xvzf pagefind_extended-v${{ vars.PAGEFIND_VERSION }}-x86_64-unknown-linux-musl.tar.gz | |
./pagefind_extended --site ${{ github.workspace }}/_site --exclude-selectors "img.emoji" --glob blog/post/**/*.html | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
deploy: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} |