From dfe0c35edfeb299cbdd8e7466db9c233dfe5532d Mon Sep 17 00:00:00 2001 From: Stephanie DiBenedetto Date: Mon, 12 Jan 2026 09:12:34 +0000 Subject: [PATCH] Use bazel build for BCR release test command By default, the release_ruleset wants to use `bazel test //...`, but this will fail since we have no tests registered with bazel (we use jasmine via gulp). Instead, just try to build the tarball as a basic check. --- .github/workflows/release.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c55d525..2dc06d6 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -22,6 +22,7 @@ jobs: release: uses: bazel-contrib/.github/.github/workflows/release_ruleset.yaml@v7.2.3 with: + bazel_test_command: "bazel build //:dist_tar" prerelease: false release_files: protobuf-javascript-*.tar.gz tag_name: ${{ inputs.tag_name || github.ref_name }}