Skip to content

Commit 13f016c

Browse files
authored
Publish npm package with ACP scope (#114)
1 parent dea85eb commit 13f016c

4 files changed

Lines changed: 41 additions & 4 deletions

File tree

.github/workflows/publish.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
verify:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v6
14+
with:
15+
node-version: '24'
16+
- run: npm ci
17+
- run: npm run typecheck
18+
- run: npm test
19+
- name: Run e2e tests
20+
env:
21+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
22+
run: npm run test:e2e
23+
24+
publish-to-npm:
25+
needs: verify
26+
runs-on: ubuntu-latest
27+
permissions:
28+
contents: read
29+
id-token: write
30+
steps:
31+
- uses: actions/checkout@v4
32+
- uses: actions/setup-node@v6
33+
with:
34+
node-version: '24'
35+
registry-url: 'https://registry.npmjs.org'
36+
- run: npm ci
37+
- run: npm publish --access public --tag beta

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ACP adapter for Codex CLI
2-
[![npm version](https://img.shields.io/npm/v/%40jetbrains%2Fcodex-acp)](https://www.npmjs.com/package/@jetbrains/codex-acp)
2+
[![npm version](https://img.shields.io/npm/v/%40agentclientprotocol%2Fcodex-acp)](https://www.npmjs.com/package/@agentclientprotocol/codex-acp)
33

44

55
## Documentation

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@jetbrains/codex-acp",
2+
"name": "@agentclientprotocol/codex-acp",
33
"version": "0.0.38",
44
"description": "",
55
"main": "dist/index.js",

0 commit comments

Comments
 (0)