Skip to content

Commit

Permalink
feat: content of about page now generated based on information from R…
Browse files Browse the repository at this point in the history
…EADME.md
  • Loading branch information
grigoriev committed Jun 24, 2024
1 parent 4c9f00f commit 819aee3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,14 @@ jobs:
]
- name: Print settings.xml
run: cat /home/runner/.m2/settings.xml
- name: Test Run of convert-readme.sh
run: .scripts/convert-readme.sh
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Build with Maven
run: mvn --batch-mode -DwpExporterImpl=docker clean package -P tests-with-weasyprint-docker
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Extract artefact version
id: artefact_version
run: echo "version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_OUTPUT
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,5 @@ target/
*.iml
dependency-reduced-pom.xml

src/main/resources/webapp/*-admin/html/about.html
src/main/resources/webapp/*-admin/html/about.html
README.html
2 changes: 1 addition & 1 deletion .scripts/convert-readme.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/bash -xv

INPUT_FILE=$1
OUTPUT_FILE=$2
Expand Down

0 comments on commit 819aee3

Please sign in to comment.