From a915428bae0c4770c470f55528c9d1c585e00f67 Mon Sep 17 00:00:00 2001 From: Sergey Nikolaev Date: Fri, 17 May 2024 13:08:57 +0700 Subject: [PATCH] CI: bug fix in pack_publish.yml --- .github/workflows/pack_publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pack_publish.yml b/.github/workflows/pack_publish.yml index a7b0ce82..cb477da5 100644 --- a/.github/workflows/pack_publish.yml +++ b/.github/workflows/pack_publish.yml @@ -213,7 +213,7 @@ jobs: - id: vars run: | version=$( cat CMakeLists.txt | grep 'columnar VERSION' | cut -d' ' -f5 ) - date=$( git log -1 --date=short --format=%cd | cut -c3- | tr -d '-' ) + date=$( git log -1 --date=format-local:"%y%m%d%H" --format=%cd ) commit=${GITHUB_SHA:0:7} echo "app_version=$version" >> $GITHUB_OUTPUT @@ -228,6 +228,6 @@ jobs: - name: Update deps uses: manticoresoftware/manticoresearch/actions/update-deps@master with: - name: columnar + name: mcl version: "${{ needs.vars.outputs.app_version }} ${{ needs.vars.outputs.app_date }} ${{ needs.vars.outputs.app_commit }}" token: ${{ secrets.PR_TOKEN }}