From 367130f587f1482da65dc70d19379f11af9501db Mon Sep 17 00:00:00 2001 From: Andrew Minkin Date: Tue, 31 Oct 2023 17:24:32 +0600 Subject: [PATCH] EVEREST-107 Fixing release pipeline --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a0d7096c..111f3425 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,10 @@ jobs: run: echo "IMAGE_TAG=${{ github.ref_name }}" >> $GITHUB_ENV - name: Build binaries - run: make release + run: | + echo $IMAGE_TAG + git describe --always --dirty | cut -b2- + make release - name: Create release with binaries uses: softprops/action-gh-release@v1