Skip to content

ANSC V1.38.0 (fixed) #4

ANSC V1.38.0 (fixed)

ANSC V1.38.0 (fixed) #4

# Simple workflow for deploying static content to GitHub Pages
name: Build and deploy AsciiDoc to GH Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Setup JDK 21
uses: actions/setup-java@main
with:
java-version: 21
distribution: 'corretto'
cache: maven
- name: Set up Node.js
uses: actions/setup-node@main
with:
node-version: '20' # Puoi scegliere la versione di Node.js desiderata
- name: Install Mermaid CLI
run: npm install -g @mermaid-js/mermaid-cli
- name: Verify Mermaid CLI installation
run: mmdc --version
- name: Convert AsciiDoc to HTML5 and PDF
run: cd docs/adoc-use-case;mvn clean asciidoctor:process-asciidoc@asciidoc-to-html
- name: Build Legacy Pages
uses: actions/jekyll-build-pages@main
with:
destination: "./docs/adoc-use-case/target/legacy/"
- name: Copy legacy site
run: cp -fvr ./docs/adoc-use-case/target/legacy/ ./docs/adoc-use-case/target/site/
- name: Copy new site
run: cp -fvr ./docs/adoc-use-case/target/generated-html5/ ./docs/adoc-use-case/target/site/guide/
- name: Check content
run: ls -l ./docs/adoc-use-case/target/site/guide
- name: Setup Pages
uses: actions/configure-pages@main
- name: Upload artifact
uses: actions/upload-pages-artifact@main
with:
# Upload entire repository
path: './docs/adoc-use-case/target/site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@main