From cd8e865dad326f85ff2357ad90bbd6aa65dea68e Mon Sep 17 00:00:00 2001 From: vnugent Date: Wed, 6 Sep 2023 13:51:13 -0400 Subject: initial commit --- Module.Taskfile.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Module.Taskfile.yaml (limited to 'Module.Taskfile.yaml') 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 -- cgit