An Azure service that is used to automate, configure, and install updates across hybrid environments.
Hello @Edward M. Hanna
Thank you for reaching out to Microsoft Q&A.
The Publish button confirming but then doing nothing is a fairly common portal glitch with Automation runbooks, and it’s not always a permissions issue.
Contributor at the subscription level is normally sufficient to publish a runbook. That role includes the necessary actions to create, edit, and publish runbooks. You can review the exact permissions here: Manage role permissions and security in Azure Automation
- Make a tiny change and re-save Open the runbook editor, add a blank line or a harmless space somewhere in the script, click Save, then try Publish again. This often clears a stuck draft state that causes the silent failure.
Try a clean browser session Use an InPrivate/Incognito window or a different browser. Portal UI glitches with the Publish action are quite common.
Publish with PowerShell (most reliable workaround) This bypasses the portal UI completely:
PowerShell
Publish-AzAutomationRunbook `
Official reference: Publish-AzAutomationRunbook
After a successful publish the runbook Status should change to Published. Only then can you link it to a schedule.
Linking the schedule
Once the status shows Published, go to the runbook → Schedules → Add a schedule (or link an existing one). Full steps are here: Manage schedules in Azure Automation
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".