-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathliquibase.flowfile.yaml
42 lines (36 loc) · 1.07 KB
/
liquibase.flowfile.yaml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# update_flow_file.yaml
# Author: Adeel Malik
stages:
validateChangelog:
# Run validate on Repo Changelog
# https://docs.liquibase.com/commands/update/validate.html
actions:
- type: liquibase
command: validate
# Show database status
# https://docs.liquibase.com/commands/change-tracking/status.html
- type: liquibase
command: status
# Run checks
# https://docs.liquibase.com/commands/quality-checks/home.html
- type: liquibase
command: checks run
liquibaseUpdate:
# Run Update on Latest Repo State
# https://docs.liquibase.com/commands/update/update-sql.html
actions:
# - type: liquibase
# command: update-sql
# cmdArgs: { }
# # Run Update on Latest Repo State
# # https://docs.liquibase.com/commands/update/update.html
- type: liquibase
command: update
cmdArgs: { }
endStage:
actions:
# Show history
# https://docs.liquibase.com/commands/change-tracking/history.html
- type: liquibase
command: history
cmdArgs: {}