From 323ff67badfc46ad638d75f059d60d9425ccb2fa Mon Sep 17 00:00:00 2001 From: vnugent Date: Sun, 10 Mar 2024 15:50:07 -0400 Subject: ci(server): Conainerize and add vncache server packages --- .../ObjectCacheServer/server/install.taskfile.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 plugins/ObjectCacheServer/server/install.taskfile.yaml (limited to 'plugins/ObjectCacheServer/server/install.taskfile.yaml') diff --git a/plugins/ObjectCacheServer/server/install.taskfile.yaml b/plugins/ObjectCacheServer/server/install.taskfile.yaml new file mode 100644 index 0000000..37baf12 --- /dev/null +++ b/plugins/ObjectCacheServer/server/install.taskfile.yaml @@ -0,0 +1,20 @@ +# https://taskfile.dev + +#Called by the vnbuild system to produce builds for my website +#https://www.vaughnnugent.com/resources/software + +version: "3" + +tasks: + + install: + internal: true + cmds: + #make the plugin directory + - cmd: powershell -Command "mkdir {{.DIR}} -Force" + ignore_error: true + - cmd: powershell -Command "pwd" + - cd {{.DIR}} && powershell "{{.SCRIPT_DIR}}/install.ps1" -BaseUrl {{.BUILDS_URL}} -ModuleName {{.MODULE_NAME}} -ProjectName {{.PROJECT_NAME}} -FileName {{.FILE_NAME}} + - cd {{.DIR}} && tar -xzf {{.FILE_NAME}} + #remove the archive file + - cd {{.DIR}} && powershell -Command "rm {{.FILE_NAME}}" \ No newline at end of file -- cgit