Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,17 @@ jobs:
runs-on: ubuntu-latest

steps:
# Version switcher file deployed straight from depo
# The version-switcher plugin is the one asset that comes from the repo (not
# a build artifact). Check it out into a dot-dir — the `files: "*"` glob below
# only sees the cwd root and skips leading-dot paths — then copy just that file
# to the root, so the upload is exactly {version-switcher.mjs, docs.zip}.
- uses: actions/checkout@v5
with:
path: .src
sparse-checkout: plugins/version-switcher.mjs
- run: cp .src/plugins/version-switcher.mjs .

# All other release artifacts from other stages
# All other release artifacts from other stages (docs.zip).
- name: Download artifacts
uses: actions/download-artifact@v5
with:
Expand Down
Loading