Commit b604a03
fix: correct schedule check in generate-release workflow
The workflow was checking `github.event.schedule == '0 1 * * TUE'` which compares the schedule string instead of checking if the event type is 'schedule'. This prevented release generation from scheduled builds.
Changed to properly check `github.event_name == 'schedule'` along with workflow_dispatch and workflow_call events.
Co-authored-by: castrojo <1264109+castrojo@users.noreply.github.com>1 parent 0f498cf commit b604a03
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
58 | | - | |
| 58 | + | |
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
| |||
0 commit comments