Skip to content

Add additional classifiers #5

Add additional classifiers

Add additional classifiers #5

Workflow file for this run

name: Postgres DB CI/DI Pipeline
on:
pull_request:
branches:
- main
push:
branches:
- main
paths:
- 'liquibaseChangelog/*'
- '.github/workflows/liquid.yaml'
- '.github/workflows/add_data_map.sh'
jobs:
test-liquibase-action:
runs-on: ubuntu-latest
name: Test Liquibase Action
steps:
- uses: actions/checkout@v2
- name: Generate Data Map Diff
if: github.event_name == 'pull_request'
shell: bash
run: .github/workflows/add_data_map.sh $${{ secrets.CYRAL_REPO_NAME }}
env:
CYRAL_CONTROL_PLANE: ${{ secrets.CYRAL_CONTROL_PLANE_URL }}
CYRAL_CLIENT_ID: ${{ secrets.CYRAL_API_CLIENT_ID }}
CYRAL_CLIENT_SECRET: ${{ secrets.CYRAL_API_CLIENT_SECRET }}
- name: Update Cyral Datamap for Repository
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
shell: bash
run: .github/workflows/add_data_map.sh $${{ secrets.CYRAL_REPO_NAME }} apply_changes
env:
CYRAL_CONTROL_PLANE: ${{ secrets.CYRAL_CONTROL_PLANE_URL }}
CYRAL_CLIENT_ID: ${{ secrets.CYRAL_API_CLIENT_ID }}
CYRAL_CLIENT_SECRET: ${{ secrets.CYRAL_API_CLIENT_SECRET }}
- name: Update database with changes using liquidbase
uses: liquibase/liquibase-github-action@v2
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
with:
operation: 'update'
classpath: 'liquibaseChangelog'
changeLogFile: 'changelog.sql'
username: ${{ secrets.LIQUID_PG_USER }}
password: ${{ secrets.LIQUID_PG_PASS }}
url: ${{ secrets.LIQUID_PG_URL }}