diff --git a/.bazelrc b/.bazelrc index 321f148..00fadd4 100644 --- a/.bazelrc +++ b/.bazelrc @@ -2,6 +2,3 @@ run -c opt --show_loading_progress=false --show_progress=false --ui_event_filter run:verbose -c dbg --show_loading_progress=true --show_progress=true --ui_event_filters=info,error,debug # https://github.com/mockito/mockito/issues/1879 test --sandbox_tmpfs_path=/tmp - -# To allow stamping git tag for version. -build --workspace_status_command=$(pwd)/workspace_status.sh diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index de2cf52..1c2d9e9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -96,6 +96,6 @@ jobs: run: make release_source_archive - uses: actions/upload-artifact@v4 with: - name: release_source_archive - path: archives/ + name: release.tar.gz + path: archives/release.tar.gz if-no-files-found: error diff --git a/MODULE.bazel b/MODULE.bazel index 77af3ef..3e31e42 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,6 +1,6 @@ module( name = "bazel-diff", - version = "7.2.11", + version = "7.2.12", compatibility_level = 0, ) diff --git a/workspace_status.sh b/workspace_status.sh deleted file mode 100755 index 03fc752..0000000 --- a/workspace_status.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash - -# Get the current Git tag or default to the commit hash -echo "STABLE_GIT_TAG $(git describe --tags --abbrev=0 2>/dev/null || git rev-parse HEAD)"