aboutsummaryrefslogtreecommitdiff
path: root/Module.Taskfile.yaml
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-04-03 18:22:56 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-04-03 18:22:56 -0400
commitd3328f4152b22b28f24c43dda62464287f1efff5 (patch)
tree9ae8f27b5e0ed25eb9891877fda123b9027e843f /Module.Taskfile.yaml
parentb11bc0bac955fd5c6db65f0da48456bf5e748805 (diff)
build: Included dependency and versions in client builds
Diffstat (limited to 'Module.Taskfile.yaml')
-rw-r--r--Module.Taskfile.yaml11
1 files changed, 3 insertions, 8 deletions
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: