aboutsummaryrefslogtreecommitdiff
path: root/Module.Taskfile.yaml
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-09-06 13:51:13 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-09-06 13:51:13 -0400
commitcd8e865dad326f85ff2357ad90bbd6aa65dea68e (patch)
tree0d4a0bb8bafc4f807407e99c5e6bf4e1cb34217a /Module.Taskfile.yaml
initial commit
Diffstat (limited to 'Module.Taskfile.yaml')
-rw-r--r--Module.Taskfile.yaml27
1 files changed, 27 insertions, 0 deletions
diff --git a/Module.Taskfile.yaml b/Module.Taskfile.yaml
new file mode 100644
index 0000000..55298a3
--- /dev/null
+++ b/Module.Taskfile.yaml
@@ -0,0 +1,27 @@
+
+#This allows the Task build system to run commands to build components of the project
+#You must install Task before executing this file, https://taskfile.dev
+
+version: '3'
+
+tasks:
+
+ #update project source code
+ update:
+ cmds:
+ - git remote update
+ - git reset --hard
+ - git pull origin {{.BRANCH_NAME}} --verify-signatures
+ #re-write semver for back-end after hard reset
+ - dotnet-gitversion.exe /updateprojectfiles
+
+ build:
+ cmds:
+
+ #copy artifacts to temp directory
+ postbuild_success:
+ cmds:
+
+ #clean hook
+ clean:
+ cmds: \ No newline at end of file