mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
The three release sequences shipped with publishConfig.access: restricted, so nothing in the @deepseek-ai scope was installable from outside the organization. A restricted dependency is what actually blocks a public consumer: every harness package declares the vendored framework as a peerDependency, and dsh-sandbox-local declares the Landlock entry as a dependency. Those two sequences therefore go public first — the nine vendor/* packages and the three native/landlock-run packages — while the dsh family stays restricted until its own sequence is opened deliberately. No public package requires a restricted one in this arrangement. Access is now per sequence, so no publish path can pass --access: one flag cannot express two levels and would override the manifest that owns the fact. publish.ts stops passing it, matching the native workflow, and check-workspace-constraints holds each manifest to its own sequence's level, which is what stops the scope from drifting one package at a time. Harness consumers reference the Landlock entry as workspace:^ instead of workspace:*, so a published harness package accepts the entry's patch and minor releases. The entry keeps workspace:* for its platform packages, where the binary must match the entry version exactly. Two rationales that named a private registry no longer describe the vendored sequence; they now state the durable reason, which is that the verification must not depend on the registry already carrying matching versions.
150 lines
5.0 KiB
YAML
150 lines
5.0 KiB
YAML
# Pack and publish the dsh release sequence: every package under packages/ plus
|
|
# the apps/ entries, all on one version. The vendored framework and the native
|
|
# packages are separate sequences with their own workflows and version lines.
|
|
#
|
|
# Pack runs without credentials on every pull request and master push, so a
|
|
# pull request proves the whole publish set still packs. Publication is a
|
|
# manual dispatch from a dsh-v* tag and consumes exactly the packed bytes.
|
|
name: Release (dsh)
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [master]
|
|
workflow_dispatch:
|
|
inputs:
|
|
publish:
|
|
description: Publish the packed tarballs to npm. Must run from a dsh-v* tag.
|
|
required: true
|
|
type: boolean
|
|
default: false
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
# Pack runs per ref so concurrent pull requests never displace each
|
|
# other; the publish job below serializes the shared dist-tag state.
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: false
|
|
|
|
env:
|
|
PRIMARY_NODE_VERSION: '24'
|
|
DSH_TELEMETRY_DISABLED: '1'
|
|
|
|
jobs:
|
|
pack:
|
|
name: Pack npm tarballs
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
# Complete history: the release scripts read tags.
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
persist-credentials: false
|
|
|
|
- uses: pnpm/action-setup@v4
|
|
with:
|
|
dest: ${{ runner.temp }}/setup-pnpm
|
|
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version: ${{ env.PRIMARY_NODE_VERSION }}
|
|
|
|
- name: Configure pnpm store path
|
|
id: pnpm-store
|
|
run: |
|
|
store_root="$HOME/.local/share/pnpm/store"
|
|
echo "PNPM_CONFIG_STORE_DIR=$store_root" >> "$GITHUB_ENV"
|
|
store_path=$(PNPM_CONFIG_STORE_DIR="$store_root" pnpm store path --silent)
|
|
echo "path=$store_path" >> "$GITHUB_OUTPUT"
|
|
|
|
- uses: actions/cache/restore@v4
|
|
with:
|
|
path: ${{ steps.pnpm-store.outputs.path }}
|
|
key: ${{ runner.os }}-node-${{ env.PRIMARY_NODE_VERSION }}-pnpm-${{ hashFiles('pnpm-lock.yaml') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-node-${{ env.PRIMARY_NODE_VERSION }}-pnpm-
|
|
|
|
- name: Install (immutable)
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Verify release version
|
|
env:
|
|
RELEASE_PUBLISH: ${{ inputs.publish }}
|
|
run: pnpm run release:verify --family dsh
|
|
|
|
- name: Build
|
|
run: pnpm run build
|
|
|
|
- name: Pack release tarballs
|
|
run: pnpm run release:pack --family dsh --out dist/npm
|
|
|
|
# The harness packages declare the vendored framework as a peer, and this
|
|
# verification must not depend on the registry already carrying matching
|
|
# versions — one pull request may bump both families before either
|
|
# publishes — so it installs that family's pack output too. Only dist/npm
|
|
# is published.
|
|
- name: Pack the vendored framework for verification
|
|
run: pnpm run release:pack --family vendor --out dist/npm-vendor
|
|
|
|
# dsh-sandbox-local declares the Landlock entry as a runtime dependency, so
|
|
# the verification needs its tarball. Its platform packages stay out: they
|
|
# are optional, and building them needs a musl toolchain per architecture.
|
|
- name: Pack the Landlock entry for verification
|
|
run: |
|
|
pnpm --dir native/landlock-run run build:ts
|
|
pnpm --dir native/landlock-run/packages/entry pack --pack-destination "$PWD/dist/npm-landlock"
|
|
|
|
- name: Verify packed install
|
|
run: pnpm run release:verify-packed-install --family dsh --from dist/npm --from dist/npm-vendor --from dist/npm-landlock
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: dsh-npm-tarballs
|
|
path: dist/npm/*
|
|
if-no-files-found: error
|
|
retention-days: 7
|
|
|
|
publish:
|
|
name: Publish to npm
|
|
if: inputs.publish
|
|
needs: pack
|
|
runs-on: ubuntu-24.04
|
|
# Required reviewers and the allowed tags live on the environment; this is
|
|
# the only step in the sequence that can write to the registry.
|
|
environment: npm-publish
|
|
concurrency:
|
|
group: Release-publish
|
|
cancel-in-progress: false
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
# Checkout and install carry the release scripts only. There is no build
|
|
# step: publication uploads the bytes the pack job produced.
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- uses: pnpm/action-setup@v4
|
|
with:
|
|
dest: ${{ runner.temp }}/setup-pnpm
|
|
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version: ${{ env.PRIMARY_NODE_VERSION }}
|
|
registry-url: https://registry.npmjs.org
|
|
|
|
- name: Install (immutable, no package scripts)
|
|
run: pnpm install --frozen-lockfile --ignore-scripts
|
|
|
|
- uses: actions/download-artifact@v4
|
|
with:
|
|
name: dsh-npm-tarballs
|
|
path: dist/npm
|
|
|
|
- name: Publish tarballs
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
run: pnpm run release:publish --family dsh --from dist/npm
|