From d3328f4152b22b28f24c43dda62464287f1efff5 Mon Sep 17 00:00:00 2001 From: vnugent Date: Wed, 3 Apr 2024 18:22:56 -0400 Subject: build: Included dependency and versions in client builds --- Module.Taskfile.yaml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'Module.Taskfile.yaml') diff --git a/Module.Taskfile.yaml b/Module.Taskfile.yaml index 5da29ee..0a80e30 100644 --- a/Module.Taskfile.yaml +++ b/Module.Taskfile.yaml @@ -15,25 +15,20 @@ tasks: #called by build pipeline to sync repo update: cmds: - - git remote update - git reset --hard + - git remote update - git pull origin {{.BRANCH_NAME}} --verify-signatures - #called by build pipeline to build module build: cmds: - echo "building module {{.MODULE_NAME}}" - postbuild_success: + publish: cmds: - - #git archive in the module binry output directory + #git archive in the module directory - git archive --format {{.ARCHIVE_FILE_FORMAT}} --output {{.ARCHIVE_FILE_NAME}} HEAD - postbuild_failed: - cmds: - - echo "postbuild failed {{.MODULE_NAME}}" #called by build pipeline to clean module clean: -- cgit