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
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
release:
uses: bazel-contrib/.github/.github/workflows/[email protected]
with:
bazel_test_command: "bazel build //:dist_tar"
bazel_test_command: "bazel build //:bcr_dist_tar"
prerelease: false
release_files: protobuf-javascript-*.tar.gz
release_files: "bazel-bin/protobuf-javascript-*.tar.gz"
tag_name: ${{ inputs.tag_name || github.ref_name }}
secrets: inherit
publish:
Expand Down
10 changes: 10 additions & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,16 @@ pkg_tar(
package_variables = ":protobuf_javascript_pkg_naming",
)

pkg_tar(
name = "bcr_dist_tar",
srcs = [
":javascript",
],
extension = "tar.gz",
package_file_name = "protobuf-javascript-{version}.tar.gz",
package_variables = ":protobuf_javascript_pkg_naming",
)

pkg_zip(
name = "dist_zip",
srcs = [
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"Bazel module that provides protoc-gen-js."

module(name = "protobuf_javascript", version = "4.0.2-rc4") # updated by release action
module(name = "protobuf_javascript", version = "4.0.2-rc5") # updated by release action

bazel_dep(name = "abseil-cpp", version = "20250512.1")
bazel_dep(name = "protobuf", version = "33.0", repo_name = "com_google_protobuf")
Expand Down
2 changes: 1 addition & 1 deletion conformance/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"LICENSE.md"
],
"dependencies": {
"google-protobuf": "file:../google-protobuf-4.0.2-rc4.tgz"
"google-protobuf": "file:../google-protobuf-4.0.2-rc5.tgz"
},
"author": "Google Protocol Buffers Team",
"license": "BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "google-protobuf",
"version": "4.0.2-rc4",
"version": "4.0.2-rc5",
"description": "Protocol Buffers for JavaScript",
"main": "google-protobuf.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion protobuf_javascript_release.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
load("@bazel_tools//tools/cpp:toolchain_utils.bzl", "find_cpp_toolchain")
load("@rules_pkg//pkg:providers.bzl", "PackageVariablesInfo")

_PROTOBUF_JAVASCRIPT_VERSION = "4.0.2-rc4"
_PROTOBUF_JAVASCRIPT_VERSION = "4.0.2-rc5"

def _package_naming_impl(ctx):
values = {}
Expand Down
2 changes: 1 addition & 1 deletion protoc_plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@protocolbuffers/protoc-gen-js",
"version": "4.0.2-rc4",
"version": "4.0.2-rc5",
"description": "Official standalone distribution of the protoc-gen-js plugin for Protocol Buffers",
"author": "Google Protocol Buffers Team",
"license": "BSD-3-Clause",
Expand Down
Loading