We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 745841c commit 4d93d5bCopy full SHA for 4d93d5b
2 files changed
.github/workflows/publish.yaml
@@ -6,8 +6,6 @@ name: Publish Package
6
7
on:
8
push:
9
- tags:
10
- - "v*"
11
12
permissions:
13
id-token: write # Required for OIDC, see https://docs.npmjs.com/trusted-publishers
scripts/publish.js
@@ -1,4 +1,4 @@
1
-// Copyright 2024-2026 Buf Technologies, Inc.
+// Copyright 2021-2026 The Connect Authors
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
@@ -37,7 +37,7 @@ npmPublish(version);
37
*/
38
function npmPublish(version) {
39
const tag = determinePublishTag(version);
40
- execSync(`npm publish --tag ${tag} --workspaces`, {
+ execSync(`npm publish --dry-run --tag ${tag} --workspaces`, {
41
stdio: "inherit",
42
});
43
}
0 commit comments