native macOS codings agent orchestrator
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #74 from onevcat/chore/fix-prowl-cask-template-desc

ci: align generated prowl cask desc with tap rules

authored by

Wei Wang and committed by
GitHub
23dca185 3ed02a21

+2 -1
+2 -1
.github/workflows/release-homebrew-cask.yml
··· 72 72 73 73 url \"https://github.com/onevcat/Prowl/releases/download/v#{{version}}/Prowl.dmg\" 74 74 name \"Prowl\" 75 - desc \"Native macOS coding agent orchestrator\" 75 + desc \"Coding agent orchestrator\" 76 76 homepage \"https://github.com/onevcat/Prowl\" 77 77 78 78 auto_updates true ··· 94 94 print("Created tap/Casks/prowl.rb") 95 95 else: 96 96 text = path.read_text() 97 + text = re.sub(r'^\s*desc\s+\".*\"\s*$', ' desc "Coding agent orchestrator"', text, flags=re.M) 97 98 text = re.sub(r'^\s*version\s+\".*\"\s*$', f' version \"{version}\"', text, flags=re.M) 98 99 text = re.sub(r'^\s*sha256\s+\".*\"\s*$', f' sha256 \"{sha}\"', text, flags=re.M) 99 100 path.write_text(text)