aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-01-09 16:55:35 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2024-01-09 16:55:35 -0500
commit73df0707fd89d57aa600953f6711cd8794df2f29 (patch)
treeee2b5f5c2c7e7ba134e9b6fa0cb7bb56896a208c
parentaf87d0785366cd849d8243aae28988fc444afa10 (diff)
fix missing plugin build for ci
-rw-r--r--ci/plugins.taskfile.yaml6
1 files changed, 5 insertions, 1 deletions
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: