Commit 96008e1
fix(ci): skip acceptance test for canary -commit. tags (#22951)
## Problem
The acceptance test workflow fires whenever CI3 succeeds on any `v*`
branch, including development canary tags like `v0.0.1-commit.<sha>`.
However, those canary tags are intentionally excluded from the
publishing pipeline (`!contains(github.ref_name, '-commit.')`), so the
installer probe hits the install endpoint for an artifact that was never
published and fails with a 404.
## Fix
Add a matching `!contains(..., '-commit.')` guard to the acceptance test
job's `if:` condition so the workflow only runs for refs whose artifacts
are actually published.1 parent c5ebbe0 commit 96008e1
1 file changed
Lines changed: 3 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | | - | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
25 | 27 | | |
26 | 28 | | |
27 | 29 | | |
| |||
0 commit comments