verbose output #440
Workflow file for this run
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: generate plantuml | |
on: push | |
jobs: | |
generate_plantuml: | |
runs-on: ubuntu-latest | |
name: plantuml | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
# The previous approach to generation has been deprecated because it does not allow a custom committer | |
# - name: plantuml | |
# id: plantuml | |
# uses: grassedge/[email protected] | |
# with: | |
# path: . | |
# message: "Render PlantUML files" | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: generate plantuml | |
run: | | |
sudo apt-get install -y plantuml graphviz | |
# This uses a slightly off-white background color because #ffffff renders as transparent for some reason | |
plantuml -tsvg -SbackgroundColor=fefefe -checkmetadata -v **/*.puml | |
shell: bash | |
- name: commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
author_name: Automated Notice Generation Pipeline | |
author_email: [email protected] | |
message: Generate PlantUML Diagrams | |
pathspec_error_handling: exitAtEnd |