This is because the workflow has a schedule for a weekly build and GitHub disables scheduled builds "when no repository activity has happened in 60 days".
In a public repository, scheduled workflows are automatically disabled when no repository activity has occurred in 60 days. For information on re-enabling a disabled workflow, see Disabling and enabling a workflow.
(reference)
We therefore need to manually reenable the workflow so that builds happen. Unfortunately a development build release is currently only generated on a push event and can't be triggered manually (because of a condition in the main workflow).
Perhaps it would be best to move the scheduled build to a separate workflow too, so that the main one doesn't get automatically disabled...
This is because the workflow has a
schedulefor a weekly build and GitHub disables scheduled builds "when no repository activity has happened in 60 days".(reference)
We therefore need to manually reenable the workflow so that builds happen. Unfortunately a development build release is currently only generated on a
pushevent and can't be triggered manually (because of a condition in the main workflow).Perhaps it would be best to move the scheduled build to a separate workflow too, so that the main one doesn't get automatically disabled...