From 6f8549562dfc07e90523ce038275667b6db9c470 Mon Sep 17 00:00:00 2001 From: dragon Date: Thu, 25 Apr 2024 13:17:01 +0800 Subject: [PATCH] fix bug --- .github/workflows/package.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index b17b13fa..0c90a1f1 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -30,7 +30,8 @@ jobs: run: echo ::set-output name=VERSION::$(go run pkg/util/version/version.go) - name: Print the version - run: echo "Version: ${{ steps.get_version.outputs.VERSION }}" + run: | + echo "Version: ${{ steps.get_version.outputs.VERSION }}" - name: Create Release id: create_release