From 73df0707fd89d57aa600953f6711cd8794df2f29 Mon Sep 17 00:00:00 2001 From: vnugent Date: Tue, 9 Jan 2024 16:55:35 -0500 Subject: fix missing plugin build for ci --- ci/plugins.taskfile.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'ci/plugins.taskfile.yaml') diff --git a/ci/plugins.taskfile.yaml b/ci/plugins.taskfile.yaml index d64a224..d67c56e 100644 --- a/ci/plugins.taskfile.yaml +++ b/ci/plugins.taskfile.yaml @@ -28,7 +28,11 @@ tasks: - cd ../front-end && npm install && npm run build #move dist files to web root - powershell -Command "cp -Recurse -Force ../front-end/dist {{.USER_WORKING_DIR}}" - #move the plugin output + + #build the plugin + - cmd: cd ../back-end/src && task build + - powershell -Command "mkdir plugins/CMNext -Force" + #copy the plugin output - powershell -Command "cp -Recurse -Force ../back-end/src/bin/release/net8.0/publish/* plugins/CMNext/" install-accounts: -- cgit