Skip to content

Commit

Permalink
Adding JSON files
Browse files Browse the repository at this point in the history
  • Loading branch information
molivasdat authored Sep 6, 2023
1 parent 663d8ff commit c1470de
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/liquibase_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@ jobs:
args: flow --flow-file=liquibase.flowfile.yaml
env:
LB_ENVIRONMENT: DEV
###
### Gather logs
###
- name: Gather logs
if: success() || failure()
uses: actions/upload-artifact@v3
with:
name: logs
path: |
/**/*DEV.json
- name: Checkin snapshot
run: |
git config user.name github-actions
Expand All @@ -66,6 +76,16 @@ jobs:
args: flow --flow-file=liquibase.flowfile.yaml
env:
LB_ENVIRONMENT: TEST
###
### Gather logs
###
- name: Gather logs
if: success() || failure()
uses: actions/upload-artifact@v3
with:
name: logs
path: |
/**/*TEST.json
- name: Checkin snapshot
run: |
git pull
Expand All @@ -91,6 +111,16 @@ jobs:
args: flow --flow-file=liquibase.flowfileprod.yaml
env:
LB_ENVIRONMENT: PROD
###
### Gather logs
###
- name: Gather logs
if: success() || failure()
uses: actions/upload-artifact@v3
with:
name: logs
path: |
/**/*PROD.json
- name: Checkin snapshot
run: |
git pull
Expand Down

0 comments on commit c1470de

Please sign in to comment.