Skip to content

Wording tweak on the Plugins page #31

Wording tweak on the Plugins page

Wording tweak on the Plugins page #31

Workflow file for this run

---
name: Build and deploy Pages
on:
push:
branches: [main]
paths-ignore:
- '.github/**'
- '.*'
- CONTRIBUTING.md
- LICENSE
- README.md
# Allow manual triggering
workflow_dispatch:
permissions:
contents: read
concurrency:
group: pages
cancel-in-progress: false
jobs:
lint:
uses: ./.github/workflows/lint.yml
permissions:
contents: read
statuses: write
build-and-deploy:
runs-on: ubuntu-latest
needs: lint
permissions:
contents: read
pages: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Build Jekyll site
run: bundle exec jekyll build --destination ./_site
- name: Configure GitHub Pages
uses: actions/configure-pages@v5
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v4
with:
path: ./_site
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4