| 12345678910111213141516171819202122232425 |
- version: '3'
- tasks:
- move-to-production:
- desc: Move the current branch to production
- cmds:
- - cmd: git tag -d production
- ignore_error: true
- silent: true
- - cmd: git push origin :production
- ignore_error: true
- silent: true
- - cmd: git tag production
- ignore_error: false
- silent: true
- - cmd: git push origin production
- ignore_error: false
- silent: true
-
- generate:
- desc: Generate SQL migrations
- cmds:
- - cmd: go generate ./database/...
- ignore_error: false
- silent: true
|