Skip to content

Commit

Permalink
Add workflow to render PlantUML images
Browse files Browse the repository at this point in the history
  • Loading branch information
nwiltsie committed Mar 6, 2024
1 parent 0e46d43 commit eecfebd
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/render-puml.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: PlantUML Generation

on:
push:
paths:
- '**.puml'
workflow_dispatch:

jobs:
plantuml:
runs-on: ubuntu-latest

steps:
- name: Generate PUML diagrams
uses: uclahs-cds/tool-PlantUML-action@v1.0.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
ghcr-username: ${{ github.actor }}
ghcr-password: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit eecfebd

Please sign in to comment.