Integrate manifest apply into build system
Update build makefiles to include manifest apply command in build pipeline: - Add apply target to deploy.mk that runs pluginctl manifest apply - Update dist target in build.mk to run apply before building - Update test and coverage targets in test.mk to run apply before testing 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
5df921238e
commit
5fe5bed9c2
3 changed files with 10 additions and 5 deletions
|
@ -2,6 +2,11 @@
|
|||
# Deployment and Plugin Management
|
||||
# ====================================================================================
|
||||
|
||||
## Applies the plugin manifest to the server and webapp codebase
|
||||
.PHONY: apply
|
||||
apply:
|
||||
pluginctl manifest apply
|
||||
|
||||
## Builds and installs the plugin to a server.
|
||||
.PHONY: deploy
|
||||
deploy: dist
|
||||
|
|
Reference in a new issue