Commit 2c3f08a
Fix manifest job tag reference for tag-push events
`manifest_build_and_push_on_tag` runs on both `push` (tag) and
`release: published`, but referenced `github.event.release.tag_name`
which is only populated for release events. Pushing a tag without
creating a GitHub Release produced an empty value and `docker
manifest create` failed with "invalid reference format" (seen on
the `1.2.2` tag run).
Use `github.ref_name`, which is set for both event types.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent 93dcef4 commit 2c3f08a
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
78 | 78 | | |
79 | 79 | | |
80 | 80 | | |
81 | | - | |
| 81 | + | |
82 | 82 | | |
83 | 83 | | |
84 | 84 | | |
85 | 85 | | |
86 | 86 | | |
87 | | - | |
| 87 | + | |
0 commit comments