Skip to content

Commit

Permalink
Update liquibase_workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lbjenn authored Sep 20, 2023
1 parent 2a06414 commit 8b758e5
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions .github/workflows/liquibase_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,38 +25,38 @@ env:

jobs:

# Build_Job:
# runs-on: ubuntu-latest
# environment:
# name: DEV
#
# steps:
# - uses: actions/checkout@v3
# with:
# token: ${{ secrets.LB_GH_TOKEN }}
# - name: Running Flow
# uses: docker://liquibase/liquibase
# with:
# 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
# git config user.email [email protected]
# git add .
# git commit -m "New Snapshots"
# git push
Build_Job:
runs-on: ubuntu-latest
environment:
name: DEV

steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.LB_GH_TOKEN }}
- name: Running Flow
uses: docker://liquibase/liquibase
with:
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
git config user.email [email protected]
git add .
git commit -m "New Snapshots"
git push

Test_Job:
Expand Down

0 comments on commit 8b758e5

Please sign in to comment.