🌱 Verify plantuml image generation in CI #3
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: PR verify-plantuml | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened] | |
# Remove all permissions from GITHUB_TOKEN except metadata. | |
permissions: {} | |
jobs: | |
plantuml-generate-check: | |
name: Image generation reproducible test | |
runs-on: ubuntu-latest | |
container: | |
image: plantuml/plantuml:1.2023 | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # tag=v3.6.0 | |
- name: "Prerequisite: install git" | |
run: apt-get -qq update && apt-get install -qq git # git is required for the diff, it isn't contained in the plantuml image | |
- name: Generate Plantuml Images | |
run: java -jar /opt/plantuml.jar ./docs/book/**/*.plantuml && java -jar /opt/plantuml.jar ./docs/proposals/**/*.plantuml | |
- name: Add git directory (https://github.com/actions/checkout/issues/363) # https://github.com/actions/checkout/issues/363 | |
run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
- name: Check if anything changed | |
run: | | |
if git diff --quiet ./docs/; then | |
echo "No changes from image re-generation." | |
else | |
echo "Re-generating images resulted in changes:" | |
git status --porcelain | |
exit 1 | |
fi |