Pandoc Test #27
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: Deploy site to GitHub 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: | |
# Build job | |
build: | |
if: '!contains(github.event.head_commit.message, ''skip ci'')' | |
runs-on: ubuntu-22.04 | |
environment: github-pages | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y pandoc language-pack-it | |
- name: Restore Timestamps | |
uses: chetan/git-restore-mtime-action@v2 | |
- name: Build docs | |
run: | | |
find . -type f -name "*.md" -mindepth 2 -print0 | while read -d $'\0' doc | |
do | |
output_dir=$(dirname "${doc}") | |
output_dir_name=$(basename "${output_dir}") | |
output_html="${output_dir}/" | |
output_html+=$(basename "${doc}" .md) | |
output_html+=".html" | |
cp ./style.css "${output_dir}" | |
lm_date=$(LC_ALL=it_IT.utf8 git log -1 --format=%ad --date=format:'%d %B %Y' -- "${doc}") | |
pandoc --template "template.html" --toc -c "style.css" --katex="https://cdn.jsdelivr.net/npm/[email protected]/dist/" -o "${output_html}" "${doc}" --metadata "toc-title=Indice" --metadata "lang=it" --metadata "date=${lm_date}" | |
done | |
- name: Create index.html | |
run: | | |
find . -type d -mindepth 1 -maxdepth 1 -print0 | sort -z | while read -d $'\0' dir | |
do | |
if [[ -f "${dir}/index.html" ]]; then | |
sed -i "s@{{{PLACEHOLDER}}}@<li><a href=\"${dir}/index.html\">$(basename "${dir}")</a></li>{{{PLACEHOLDER}}}@" index.html | |
fi | |
done | |
sed -i "s@{{{PLACEHOLDER}}}@@g" index.html | |
- name: Delete symlinks if any | |
run: | | |
find . -type l -delete | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: ./ | |
# Deploy job | |
deploy: | |
# Add a dependency to the build job | |
needs: build | |
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment | |
permissions: | |
pages: write # to deploy to Pages | |
id-token: write # to verify the deployment originates from an appropriate source | |
# Deploy to the github-pages environment | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
# Specify runner + deployment step | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Pages | |
uses: actions/configure-pages@v3 | |
- name: Download artifact | |
uses: actions/download-artifact@v2 | |
with: | |
name: github-pages | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 # or the latest "vX.X.X" version tag for this action |