Commit 84be0d7
committed
chore(ci): treat any non-prod dist-tag as canary in publish workflow
The publish workflow had `inputs.dist-tag == 'next'` gates on the bump,
commit, and `pnpm publish:next` steps. v4 passes `dist-tag: 'v4'`, which
silently skipped all four steps — the workflow reported success but
nothing was published.
Switching to `!= 'prod'` lets any canary tag (`next`, `v4`, future
release lines) flow through. The actual npm dist-tag is still set per
branch by the `publish:next` script (`--dist-tag next` on master,
`--dist-tag v4` on v4).1 parent 36022e7 commit 84be0d7
1 file changed
Lines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
67 | | - | |
| 67 | + | |
68 | 68 | | |
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
72 | | - | |
| 72 | + | |
73 | 73 | | |
74 | 74 | | |
75 | 75 | | |
| |||
90 | 90 | | |
91 | 91 | | |
92 | 92 | | |
93 | | - | |
| 93 | + | |
94 | 94 | | |
95 | 95 | | |
96 | 96 | | |
| |||
0 commit comments