Skip to content

i18n: translate Recipe-Planner Agent project into ar/es/fr (#260) #140

i18n: translate Recipe-Planner Agent project into ar/es/fr (#260)

i18n: translate Recipe-Planner Agent project into ar/es/fr (#260) #140

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: "jupyterlite-config/**"
- name: Build JupyterLite (Data Analysis playground)
working-directory: jupyterlite-config
run: >
uv run --with jupyterlite-core --with jupyterlite-pyodide-kernel
--with jupyterlab_server
jupyter lite build --config jupyter_lite_config.json
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Build site
run: npm run build
- name: Merge JupyterLite build into the site output
run: cp -r jupyterlite-config/_output build/lite
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: build
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4