Includes prior-session patches (carry forward so the app compiles): - crates/gpui/build.rs: cross-compile manifest fix - crates/gpui/src/platform.rs: PlatformWindow::activate_with_token trait method - crates/gpui/src/window.rs: Window::activate_with_token public API - crates/gpui_linux/src/linux/wayland/window.rs: WaylandWindow::activate_with_token + activate() keyboard-serial fix Plus the focus-serial fix: - serial.rs: SerialKind::KeyboardEnter - client.rs: store wl_keyboard.enter serial; latest_serial_of() Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
24 lines
720 B
YAML
24 lines
720 B
YAML
# Generated from xtask::workflows::deploy_nightly_docs
|
|
# Rebuild with `cargo xtask workflows`.
|
|
name: deploy_nightly_docs
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
deploy_docs:
|
|
if: (github.repository_owner == 'zed-industries' || github.repository_owner == 'zed-extensions')
|
|
permissions:
|
|
contents: read
|
|
uses: zed-industries/zed/.github/workflows/deploy_docs.yml@main
|
|
secrets:
|
|
DOCS_AMPLITUDE_API_KEY: ${{ secrets.DOCS_AMPLITUDE_API_KEY }}
|
|
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
|
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
|
with:
|
|
channel: nightly
|
|
checkout_ref: ${{ github.sha }}
|
|
defaults:
|
|
run:
|
|
shell: bash -euxo pipefail {0}
|