Skip to content

Commit

Permalink
Add architecture diagram workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacck committed Dec 15, 2024
1 parent cc77f4f commit 130fa76
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/architecture.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Generate Architecture Diagram

on:
push:
branches: [ main ]
workflow_dispatch:

jobs:
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10'

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y graphviz
pip install diagrams
- name: Create architecture diagram
run: python architecture_generator.py

- name: Commit diagram
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add architecture.png
git commit -m "Update architecture diagram" || exit 0
git push

0 comments on commit 130fa76

Please sign in to comment.