From 642d5e34caa0d9249ab18c888e3646b6e5cf8979 Mon Sep 17 00:00:00 2001 From: "Birmiwal, Rahul R" Date: Thu, 16 Nov 2023 14:33:54 -0800 Subject: [PATCH] debugging --- .github/workflows/publish_build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_build.yml b/.github/workflows/publish_build.yml index a06ade39..3053c750 100644 --- a/.github/workflows/publish_build.yml +++ b/.github/workflows/publish_build.yml @@ -23,8 +23,9 @@ jobs: - name: Get latest tag id: get_tag run: | - echo "latest_tag=$(git describe --tags `git rev-list --tags --max-count=1`)" >> $GITHUB_OUTPUT - echo "${{ steps.get_tag.outputs.latest_tag }}" + latest_tag=$(git describe --tags `git rev-list --tags --max-count=1`) + echo $latest_tag + echo "::set-output name=tag::$latest_tag" - name: Extract version from tag id: extract_version