aboutsummaryrefslogtreecommitdiff
path: root/Module.Taskfile.yaml
blob: 55298a3f38378a8689c7addbdf99dab8c5ad0b70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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: