Skip to content

Commit fe0686e

Browse files
ci: Don't publish release to npm
The version was already published, due to a mistake during pipeline refactoring. Consumers of the npm package can continue to use the nightly.
1 parent 9f131a3 commit fe0686e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ jobs:
5252
move-tags: ${{ github.event_name == 'workflow_dispatch' && inputs.move-tags || 'true' }}
5353
publish-documentation: ${{ github.event_name == 'workflow_dispatch' && inputs.publish-documentation || 'true' }}
5454
publish-github-release: ${{ github.event_name == 'workflow_dispatch' && inputs.publish-github-release || 'true' }}
55-
publish-npm: ${{ github.event_name == 'workflow_dispatch' && inputs.publish-npm || 'true' }}
56-
publish-oci: ${{ github.event_name == 'workflow_dispatch' && inputs.publish-oci || 'true' }}
55+
publish-npm: ${{ github.event_name == 'workflow_dispatch' && inputs.publish-npm || 'false' }}
56+
publish-oci: ${{ github.event_name == 'workflow_dispatch' && inputs.publish-oci || 'false' }}
5757
release-tag: ${{ github.event_name == 'workflow_dispatch' && inputs.release-tag || 'latest' }}
5858
release-channel: stable
5959
permissions:

0 commit comments

Comments
 (0)