From 1e8ea427629c2d3f821a8a5a1328f20e0757cc1d Mon Sep 17 00:00:00 2001 From: ntkathole Date: Wed, 9 Jul 2025 19:18:32 +0530 Subject: [PATCH] fix: Fix current version in publish workflow Signed-off-by: ntkathole --- .github/workflows/publish_web_ui.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish_web_ui.yml b/.github/workflows/publish_web_ui.yml index 34d0c2b511f..6fcdf241e9a 100644 --- a/.github/workflows/publish_web_ui.yml +++ b/.github/workflows/publish_web_ui.yml @@ -54,7 +54,7 @@ jobs: node-version-file: './ui/.nvmrc' - name: Bump file versions (temporarily for Web UI publish) env: - CURRENT_VERSION: ${{ steps.get-version.outputs.current_version }} + CURRENT_VERSION: ${{ steps.get-version.outputs.highest_semver_tag }} NEXT_VERSION: ${{ steps.get-version.outputs.version_without_prefix }} run: python ./infra/scripts/release/bump_file_versions.py ${CURRENT_VERSION} ${NEXT_VERSION} - name: Install yarn dependencies