[llvm-branch-commits] [llvm] release/23.x: workflows: Fixes for release-binaries and upload-release-artifact (#209246) (PR #210237)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Thu Jul 16 21:16:13 PDT 2026
llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-github-workflow
Author: llvmbot
<details>
<summary>Changes</summary>
Backport 963e226d9a6b923b10c8e328438838bd42e03d18
Requested by: @<!-- -->tstellar
---
Full diff: https://github.com/llvm/llvm-project/pull/210237.diff
2 Files Affected:
- (modified) .github/workflows/release-binaries.yml (+1)
- (modified) .github/workflows/validate-release-version/action.yml (+2-2)
``````````diff
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index 6fdf5e8c14cb8..d2dbb656d371d 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -386,6 +386,7 @@ jobs:
persist-credentials: false
sparse-checkout: |
.github/workflows/upload-release-artifact
+ .github/workflows/validate-release-version
llvm/utils/release/github-upload-release.py
llvm/utils/git/requirements.txt
sparse-checkout-cone-mode: false
diff --git a/.github/workflows/validate-release-version/action.yml b/.github/workflows/validate-release-version/action.yml
index 1a10ad67cb549..669369eaf82e6 100644
--- a/.github/workflows/validate-release-version/action.yml
+++ b/.github/workflows/validate-release-version/action.yml
@@ -9,7 +9,7 @@ runs:
using: "composite"
steps:
- env:
- RELEASE_VERSON: ${{ inputs.release-version }}
-
+ RELEASE_VERSION: ${{ inputs.release-version }}
+ shell: bash
run: |
grep -e '^[0-9]\+\.[0-9]\+\.[0-9]\+\(-rc[0-9]\+\)\?$' <<< "$RELEASE_VERSION"
``````````
</details>
https://github.com/llvm/llvm-project/pull/210237
More information about the llvm-branch-commits
mailing list