Skip to content

Commit 424be7e

Browse files
vklimontovichclaude
andcommitted
fix: remove manual publish job, use release-please flow only
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 9b3015f commit 424be7e

1 file changed

Lines changed: 0 additions & 38 deletions

File tree

.github/workflows/release.yaml

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,6 @@ on:
55
branches:
66
- main
77
- stable
8-
workflow_dispatch:
9-
inputs:
10-
tag:
11-
description: 'Tag to publish (e.g., v0.2.1). Leave empty for normal release-please flow.'
12-
required: false
13-
type: string
148

159
jobs:
1610
release-please:
@@ -57,38 +51,6 @@ jobs:
5751
npm install -g npm@latest
5852
npm publish --provenance --access public
5953
60-
publish-manual:
61-
if: github.event_name == 'workflow_dispatch'
62-
runs-on: ubuntu-latest
63-
permissions:
64-
contents: read
65-
id-token: write
66-
steps:
67-
- uses: actions/checkout@v4
68-
with:
69-
ref: ${{ inputs.tag || github.ref }}
70-
71-
- uses: oven-sh/setup-bun@v2
72-
with:
73-
bun-version: latest
74-
75-
- uses: actions/setup-node@v4
76-
with:
77-
node-version: 22
78-
registry-url: https://registry.npmjs.org
79-
80-
- name: Install dependencies
81-
run: bun install --frozen-lockfile
82-
83-
- name: Build
84-
run: bun run build
85-
86-
- name: Publish
87-
working-directory: packages/core
88-
run: |
89-
npm install -g npm@latest
90-
npm publish --provenance --access public
91-
9254
publish-canary:
9355
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
9456
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)