Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ concurrency:

jobs:
publish:
# Only ever publish from a version tag, even on manual workflow_dispatch,
# so a dispatch against an untagged branch can never push a release.
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -33,7 +36,7 @@ jobs:
node-version: 22
registry-url: https://registry.npmjs.org
- name: Ensure npm supports OIDC trusted publishing
run: npm install -g npm@latest # OIDC requires npm >= 11.5.1
run: npm install -g npm@11 # OIDC requires npm >= 11.5.1; pin major to avoid surprise breakage
- run: npm ci
- run: npm run build
- run: npm run test --if-present
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A stateless, typed HTTP client for calling KeeperHub from backend services, ops

## Status

Early development. The package is not yet published. The public surface and REST contract are still stabilizing.
Early development (`0.x`). The public surface and REST contract are still stabilizing and may change between minor versions until `1.0`.

## Install

Expand Down
Loading