Skip to content

UWB-Biocomputing/plantuml-github-action

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PlantUML GitHub Action

PlantUML Github Action - kept up to date with PlantUML releases.

This repository updates itself and produces a new version/tag on every PlantUML release.

Usage

Minimal

Action generating all *.puml diagrams as svg in diagrams folder on push:

name: Generate PlantUML Diagrams
on:
  push:

jobs:
  plantuml:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout Source
        uses: actions/checkout@v2

      - name: Generate SVG Diagrams
        uses: holowinski/plantuml-github-action@main
        with:
          args: -v -tsvg diagrams/*.puml

Update changed diagrams

Action updating diagrams modified in last commit and pushing the change

name: Generate PlantUML Diagrams
on:
  push:
    paths:
      - "**.puml"

jobs:
  plantuml:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout Source
        uses: actions/checkout@v2

      - name: Get changed UML files
        id: getfile
        run: |
          echo "::set-output name=files::$(git diff --name-only HEAD^ HEAD | grep .puml | xargs)"

      - name: Generate SVG Diagrams
        uses: holowinski/plantuml-github-action@main
        with:
          args: -v -tsvg ${{steps.getfile.outputs.files}}

      - name: Push Local Changes
        uses: stefanzweifel/[email protected]
        with:
          commit_message: "Generate SVG files for PlantUML diagrams"
          branch: ${{ github.head_ref }}

Testing

There's a special issue which regenerates an example diagram on every comment - check it out.

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 86.0%
  • Shell 14.0%