Add log files and reports #88
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | ||
name: run_changes | ||
# Controls when the action will run. Triggers the workflow on push or pull request | ||
# events but only for the main branch | ||
on: | ||
workflow_dispatch: | ||
# push: | ||
# branches: [ main ] | ||
# pull_request: | ||
# branches: [ main ] | ||
inputs: | ||
tag: | ||
description: 'Enter tag for rollback' | ||
required: true | ||
env: | ||
LIQUIBASE_PRO_LICENSE_KEY: ${{ secrets.LIQUIBASE_PRO_LICENSE_KEY }} | ||
LIQUIBASE_COMMAND_URL: ${{ secrets.LIQUIBASE_COMMAND_URL }} | ||
LIQUIBASE_COMMAND_USERNAME: ${{ secrets.LIQUIBASE_COMMAND_USERNAME }} | ||
LIQUIBASE_COMMAND_PASSWORD: ${{ secrets.LIQUIBASE_COMMAND_PASSWORD }} | ||
LIQUIBASE_COMMAND_CHANGELOG_FILE: ${{ secrets.LIQUIBASE_COMMAND_CHANGELOG_FILE }} | ||
LIQUIBASE_COMMAND_TAG: ${{ github.event.inputs.tag }} | ||
LIQUIBASE_LOG_FORMAT: "JSON" | ||
LIQUIBASE_LOG_LEVEL: "INFO" | ||
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: --log-file=runlog_DEV.json 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 | ||
**/*.html | ||
- 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: | ||
needs: Build_Job | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: TEST | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.LB_GH_TOKEN }} | ||
- name: Running Flow | ||
uses: docker://liquibase/liquibase | ||
with: | ||
args: --log-file=runlog_TEST.json 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 | ||
**/*.html | ||
- name: Checkin snapshot | ||
run: | | ||
git pull | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git add . | ||
git commit -m "New Snapshots $LB_ENVIRONMENT" | ||
git push | ||
Deploy_Prod_Job: | ||
needs: Test_Job | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: PROD | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.LB_GH_TOKEN }} | ||
- name: Running Flow | ||
uses: docker://liquibase/liquibase | ||
with: | ||
args: --log-file=runlog_PROD.json 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 | ||
**/*.html | ||
- name: Checkin snapshot | ||
run: | | ||
git pull | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git add . | ||
git commit -m "New Snapshots" | ||
git push | ||