From 68346716d727d2775ef29221c1ceed0a62174e49 Mon Sep 17 00:00:00 2001 From: Ben Knutson Date: Wed, 18 Feb 2026 16:12:17 +0000 Subject: [PATCH] Refactor Github Action per b/485167538 --- .github/workflows/publish-build-tools.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-build-tools.yml b/.github/workflows/publish-build-tools.yml index 1cd809139..de828eeed 100644 --- a/.github/workflows/publish-build-tools.yml +++ b/.github/workflows/publish-build-tools.yml @@ -46,8 +46,11 @@ jobs: - name: Generate tag id: tag run: | - TAG="ubuntu-${{ github.event.inputs.ubuntu_version }}-bazel-${{ github.event.inputs.bazel_version }}" + TAG="ubuntu-${GITHUB_EVENT_INPUTS_UBUNTU_VERSION}-bazel-${GITHUB_EVENT_INPUTS_BAZEL_VERSION}" echo "tag=$TAG" >> $GITHUB_OUTPUT + env: + GITHUB_EVENT_INPUTS_UBUNTU_VERSION: ${{ github.event.inputs.ubuntu_version }} + GITHUB_EVENT_INPUTS_BAZEL_VERSION: ${{ github.event.inputs.bazel_version }} - name: Login to GitHub Container Registry if: ${{ !github.event.inputs.draft }}