aboutsummaryrefslogtreecommitdiff
path: root/Module.Taskfile.yaml
blob: 29bde03d9f49bbe85bfc4b210b1f2cce88cbe17d (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

#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

  build:
    cmds:
    
  #copy artifacts to temp directory
  postbuild_success:
    cmds:

  #clean hook
  clean:
    cmds: