Skip to content

ci: remove .asciidoctor folder. #37

ci: remove .asciidoctor folder.

ci: remove .asciidoctor folder. #37

Workflow file for this run

name: Release Build
on:
push:
tags:
- '*'
env:
CI: true
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Setup gradle
uses: gradle/actions/setup-gradle@v4
- name: Create folders
run: |
mkdir -p sdpi-documents/sdpi-standard
mkdir -p sdpi-documents/sdpi-supplement
- name: Create SDPi Standard HTML with Gradle
run: ./gradlew run --args="--input-file ../../asciidoc/sdpi-standard.adoc --output-folder ../../sdpi-documents/sdpi-standard --github-token '${{ secrets.SDPI_API_ACCESS_TOKEN_SECRET }}' --backend html"
working-directory: .ci/asciidoc-converter
- name: Create SDPi Supplement HTML with Gradle
run: ./gradlew run --args="--input-file ../../asciidoc/sdpi-supplement.adoc --output-folder ../../sdpi-documents/sdpi-supplement --github-token '${{ secrets.SDPI_API_ACCESS_TOKEN_SECRET }}' --backend html"
working-directory: .ci/asciidoc-converter
- name: Generate PlantUML diagrams and static files
run: .github/prepare_artifacts.sh "${{ github.ref_name }}"
- name: Upload artifact
# if: success() && github.ref == 'refs/heads/master'
uses: actions/upload-artifact@v4
with:
name: sdpi-documents
path: sdpi-documents
- name: Create release page
uses: ncipollo/release-action@v1
with:
name: "Release of ${{ github.ref_name }} for TI"
makeLatest: true
body: "[📋Please click here for a detailed changelog](https://github.com/IHE/DEV.SDPi/blob/${{ github.ref_name }}/CHANGELOG.md)"
artifacts: "sdpi-documents-${{ github.ref_name }}.zip"