From adaf807dfe73835ad0351010a6b3a461f45237a2 Mon Sep 17 00:00:00 2001 From: Alex Roan Date: Thu, 30 May 2024 17:27:16 +0100 Subject: [PATCH] Update command to get commit --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6dd16fcf5..9cdafac27 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,7 +32,7 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - + - name: Verify Repository Context run: | pwd @@ -40,7 +40,7 @@ jobs: git status - name: Get Git Commit Description - run: echo "BIN_COMMIT=$(git describe --tags)" >> $GITHUB_ENV + run: echo "BIN_COMMIT=$(git rev-parse --short HEAD)" >> $GITHUB_ENV - name: Install Rust uses: dtolnay/rust-toolchain@stable