diff --git a/.github/workflows/liquibase_pro_cd_action.yml b/.github/workflows/liquibase_pro_cd_action.yml index 8ac607e..bfef18a 100644 --- a/.github/workflows/liquibase_pro_cd_action.yml +++ b/.github/workflows/liquibase_pro_cd_action.yml @@ -39,7 +39,7 @@ env: # The Liquibase Search Path controls how Liquibase finds it's configurations. # To ensure the correct config gets located first, keep "." at the end of this path. # See https://docs.liquibase.com/concepts/changelogs/how-liquibase-finds-files.html - LIQUIBASE_SEARCH_PATH: "liquibase-sql,." + LIQUIBASE_SEARCH_PATH: "liquibase-sql/sqlcode_by_releases_db,." # Location of the Custom Policy Checks settings file from the Liquibase Configuration Repo. # See https://docs.liquibase.com/liquibase-pro/policy-checks/custom-policy-checks/home.html diff --git a/.github/workflows/liquibase_pro_ci_action.yml b/.github/workflows/liquibase_pro_ci_action.yml index 298d8a6..813e0bd 100644 --- a/.github/workflows/liquibase_pro_ci_action.yml +++ b/.github/workflows/liquibase_pro_ci_action.yml @@ -34,7 +34,7 @@ env: # The Liquibase Search Path controls how Liquibase finds it's configurations. # To ensure the correct config gets located first, keep "." at the end of this path. # See https://docs.liquibase.com/concepts/changelogs/how-liquibase-finds-files.html - LIQUIBASE_SEARCH_PATH: "liquibase-sql,." + LIQUIBASE_SEARCH_PATH: "liquibase-sql/sqlcode_by_releases_db,." # Location of the Custom Policy Checks settings file from the Liquibase Configuration Repo. # See https://docs.liquibase.com/liquibase-pro/policy-checks/custom-policy-checks/home.html diff --git a/.github/workflows/liquibase_pro_manual_deployment.yml b/.github/workflows/liquibase_pro_manual_deployment.yml index 5621d3d..66b98e1 100644 --- a/.github/workflows/liquibase_pro_manual_deployment.yml +++ b/.github/workflows/liquibase_pro_manual_deployment.yml @@ -35,7 +35,7 @@ env: # The Liquibase Search Path controls how Liquibase finds it's configurations. # To ensure the correct config gets located first, keep "." at the end of this path. # See https://docs.liquibase.com/concepts/changelogs/how-liquibase-finds-files.html - LIQUIBASE_SEARCH_PATH: "liquibase-sql,." + LIQUIBASE_SEARCH_PATH: "liquibase-sql/sqlcode_by_releases_db,." # Location of the Custom Policy Checks settings file from the Liquibase Configuration Repo. # See https://docs.liquibase.com/liquibase-pro/policy-checks/custom-policy-checks/home.html @@ -129,6 +129,8 @@ jobs: # Execute the Flow file - name: Run flow run: | - liquibase --license-key=${{ env.LIQUIBASE_LICENSE_KEY }} flow \ + liquibase --license-key=${{ env.LIQUIBASE_LICENSE_KEY }} \ + --changelog-file=rootchangelog_by_releases_db.yaml \ + flow \ --flow-file=${{ env.FLOW_FILE }} \ --logfile=logs/liquibase.log diff --git a/.github/workflows/liquibase_pro_rollback_utility_action.yml b/.github/workflows/liquibase_pro_rollback_utility_action.yml index 6443f66..b46fe3d 100644 --- a/.github/workflows/liquibase_pro_rollback_utility_action.yml +++ b/.github/workflows/liquibase_pro_rollback_utility_action.yml @@ -49,7 +49,7 @@ env: # The Liquibase Search Path controls how Liquibase finds it's configurations. # To ensure the correct config gets located first, keep "." at the end of this path. # See https://docs.liquibase.com/concepts/changelogs/how-liquibase-finds-files.html - LIQUIBASE_SEARCH_PATH: "liquibase-sql,." + LIQUIBASE_SEARCH_PATH: "liquibase-sql/sqlcode_by_releases_db,." # Store the Liquibase Pro License key in a Github Action Repository Secret. The # same license key is used for all executions, so it is tracked at the repository level @@ -137,6 +137,8 @@ jobs: # Execute the Flow file - name: Run flow run: | - liquibase --license-key=${{ secrets.LIQUIBASE_LICENSE_KEY }} flow \ + liquibase --license-key=${{ secrets.LIQUIBASE_LICENSE_KEY }} \ + --changelog-file=rootchangelog_by_releases_db.yaml \ + flow \ --flow-file=${{ env.FLOW_FILE }} \ --logfile=logs/liquibase.log