Skip to content

Commit 00e1816

Browse files
ci: point storyboard runner at @adcp/sdk latest instead of adcp-3.1
The @adcp/sdk publish process changed to publish stable releases under the `latest` dist-tag and no longer emits an `adcp-3.1` tag (AdCP 3.1 is the current stable line, shipped as `latest`). The removed `adcp-3.1` tag made every storyboard runner fail with `npm notarget @adcp/sdk@adcp-3.1`. Track `latest` only — the current AdCP 3.1 stable line. The legacy adcp-3.0 compatibility leg is dropped; we no longer ship against the AdCP 3.0 line. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 7c81056 commit 00e1816

1 file changed

Lines changed: 6 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ on:
66
pull_request:
77
branches: [main]
88

9-
# Default @adcp/sdk runner alias for non-matrix storyboard jobs.
10-
# The reference seller storyboard job below runs both sticky 3.0 and 3.1 tags.
9+
# Default @adcp/sdk runner alias for storyboard jobs. Tracks the current
10+
# stable @adcp/sdk release via the ``latest`` npm dist-tag.
1111
env:
12-
ADCP_SDK_VERSION: "adcp-3.1"
12+
ADCP_SDK_VERSION: "latest"
1313

1414
concurrency:
1515
group: ci-${{ github.ref }}
@@ -361,15 +361,12 @@ jobs:
361361
name: AdCP storyboard runner — examples/seller_agent.py (@adcp/sdk ${{ matrix.adcp-sdk-tag }})
362362
runs-on: ubuntu-latest
363363
# Blocking gate: examples/seller_agent.py is the Python-owned
364-
# reference target for bidirectional storyboard interop. The npm
365-
# dist-tags are sticky compatibility gates: ``adcp-3.0`` stays on
366-
# the 3.0 runner line, while ``adcp-3.1`` tracks the current 3.1
367-
# runner. Downstream SDKs and adopters can assert backwards
368-
# compatibility without depending on moving latest/beta semantics.
364+
# reference target for bidirectional storyboard interop. ``latest``
365+
# tracks the current stable @adcp/sdk release (the AdCP 3.1 line).
369366
strategy:
370367
fail-fast: false
371368
matrix:
372-
adcp-sdk-tag: ["adcp-3.0", "adcp-3.1"]
369+
adcp-sdk-tag: ["latest"]
373370

374371
steps:
375372
- uses: actions/checkout@v6

0 commit comments

Comments
 (0)