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
12 changes: 1 addition & 11 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,33 +21,23 @@ jobs:
version: 10
- uses: actions/setup-node@v4
with:
node-version: 22
node-version: 24
cache: pnpm
registry-url: "https://registry.npmjs.org"
- run: pnpm install --frozen-lockfile
- run: pnpm build

- name: Publish @hyperframes/core
run: pnpm --filter @hyperframes/core publish --access public --provenance --no-git-checks
env:
NPM_CONFIG_PROVENANCE: "true"

- name: Publish @hyperframes/engine
run: pnpm --filter @hyperframes/engine publish --access public --provenance --no-git-checks
env:
NPM_CONFIG_PROVENANCE: "true"

- name: Publish @hyperframes/producer
run: pnpm --filter @hyperframes/producer publish --access public --provenance --no-git-checks
env:
NPM_CONFIG_PROVENANCE: "true"

- name: Publish @hyperframes/studio
run: pnpm --filter @hyperframes/studio publish --access public --provenance --no-git-checks
env:
NPM_CONFIG_PROVENANCE: "true"

- name: Publish hyperframes (CLI)
run: pnpm --filter hyperframes publish --access public --provenance --no-git-checks
env:
NPM_CONFIG_PROVENANCE: "true"
Loading