Prepare release files #4
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: Prepare release files | |
on: | |
release: | |
types: | |
- created | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Download widoco | |
run: wget -q -O widoco.jar https://github.com/dgarijo/Widoco/releases/download/v1.4.25/widoco-1.4.25-jar-with-dependencies_JDK-17.jar | |
- name: Compile documentation | |
run: | | |
java -jar widoco.jar \ | |
-ontFile cop.owl \ | |
-outFolder output \ | |
-includeAnnotationProperties \ | |
-rewriteAll \ | |
-includeImportedOntologies \ | |
-uniteSections \ | |
-noPlaceHolderText | |
cp output/ontology.* . | |
ls ontology.* | sed -e 'p;s/^ontology/cop/' | xargs -n2 mv | |
- name: Upload release artifacts | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
tag: ${{ github.ref }} | |
file: cop.* | |
file_glob: true | |
overwrite: true | |
- name: Deploy version documentation | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./output | |
destination_dir: release/${{ github.event.release.tag_name }} | |
- name: Deploy latest documentation | |
if: '!github.event.release.prerelease' | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./output | |
destination_dir: release/latest |