Merge pull request #64 from teksi/2024-11-21-correct_control_cable_po… #162
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
name: 📦 Datamodel | Create dumps | |
concurrency: | |
group: dumps-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
paths: | |
- datamodel/** | |
- '.github/workflows/datamodel-create-dumps.yml' | |
workflow_dispatch: | |
workflow_call: | |
jobs: | |
datamodel-dumps: | |
name: Create dumps and schemaspy of datamodel | |
runs-on: ubuntu-latest | |
env: | |
COMPOSE_PROFILES: schemaspy | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Docker build | |
run: docker compose up -d --build | |
- name: Initialize container | |
run: docker compose exec db init_db.sh wait | |
- name: Create dumps | |
run: docker compose exec db /src/datamodel/scripts/create-dumps.py | |
- name: Schemaspy | |
run: docker compose run schemaspy | |
- name: Docker logs | |
if: failure() | |
run: docker compose logs db | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: datamodel-dumps | |
path: datamodel/artifacts/ | |
if-no-files-found: error | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: datamodel-schemaspy | |
path: datamodel/schemaspy/ | |
if-no-files-found: error |