Skip to content

Add critical assessment chapter to evaluate EMTS framework #18

Add critical assessment chapter to evaluate EMTS framework

Add critical assessment chapter to evaluate EMTS framework #18

Workflow file for this run

name: github-pages
on:
push:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install LaTeX packages
run: |
sudo apt-get update
sudo apt-get install -y \
texlive-latex-recommended \
texlive-latex-extra \
texlive-fonts-recommended \
texlive-lang-english
- name: Build PDF
run: |
chmod +x build.sh
./build.sh
- name: Prepare Pages content
run: |
mkdir -p public
cp index.html public/
cp EMTS.pdf public/
if [ -f figures/EMTS.png ]; then
mkdir -p public/figures
cp figures/EMTS.png public/figures/
fi
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: public
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4