mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-28 07:57:01 +00:00
fix: use correct tag reference in release workflow wait-for-artifacts step (#240)
- Change ref from github.ref to needs.release-check.outputs.tag - Fix issue where wait-on-check-action receives full git reference (refs/tags/1.0.0-alpha.21) instead of clean tag name (1.0.0-alpha.21) - This resolves timeout errors when waiting for build artifacts during release process Fixes the release workflow failure for tag 1.0.0-alpha.21
This commit is contained in:
@@ -150,12 +150,12 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Wait for build workflow
|
- name: Wait for build workflow
|
||||||
uses: lewagon/wait-on-check-action@v1.3.1
|
uses: lewagon/wait-on-check-action@v1.4.0
|
||||||
with:
|
with:
|
||||||
ref: ${{ needs.release-check.outputs.tag }}
|
ref: ${{ needs.release-check.outputs.tag }}
|
||||||
check-name: Build RustFS
|
check-name: Build RustFS
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
wait-interval: 30
|
wait-interval: 600
|
||||||
allowed-conclusions: success
|
allowed-conclusions: success
|
||||||
|
|
||||||
# Download and prepare release assets
|
# Download and prepare release assets
|
||||||
|
|||||||
Reference in New Issue
Block a user