From ef19490caf29134d7a6e32ef3ad3fc860ef0d059 Mon Sep 17 00:00:00 2001 From: maxisam <456807+maxisam@users.noreply.github.com.> Date: Wed, 24 Sep 2025 10:10:58 -0500 Subject: [PATCH] fix: update artifact naming to use run number instead of ref name ref name is usually like fix/xxx --- .github/workflows/release-macos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-macos.yml b/.github/workflows/release-macos.yml index abcf399..bd48fe1 100644 --- a/.github/workflows/release-macos.yml +++ b/.github/workflows/release-macos.yml @@ -31,7 +31,7 @@ jobs: id: prep_artifact run: | # Use runner.arch which resolves to 'x64' or 'arm64' - FINAL_NAME="git-crypt-${{ github.ref_name }}-darwin-${{ runner.arch }}" + FINAL_NAME="git-crypt-${{ github.run_number }}-darwin-${{ runner.arch }}" # Append '-dev' suffix for non-release builds (e.g., PRs) if [[ "${{ github.event_name }}" != 'release' ]]; then