Skip to content

chore(deps-dev): bump svelte from 5.9.0 to 5.16.2 #979

chore(deps-dev): bump svelte from 5.9.0 to 5.16.2

chore(deps-dev): bump svelte from 5.9.0 to 5.16.2 #979

Workflow file for this run

name: Deploy Jekyll with GitHub Pages
on:
push:
branches:
- main
paths:
- 'docs/**'
pull_request:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
id: setup-pages
uses: actions/configure-pages@v5
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 0 # Increment this number if you need to re-download cached gems
- name: Install themes
run: cd docs && bundle install
- name: Build with Jekyll
run: cd docs && bundle exec jekyll build --baseurl "${{ steps.setup-pages.outputs.base_path }}" --destination ../_site
env:
JEKYLL_ENV: production
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
# Deployment job
deploy:
if: github.ref == 'refs/heads/main'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4