Skip to content

Install Node.js ondemand #11

Install Node.js ondemand

Install Node.js ondemand #11

Workflow file for this run

name: 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:
env:
SYSTEM_NAME_COMMAND: systemname
SYSTEM_NAME: griffith
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
name: github-pages
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-latest
container: arcatdmz/texlive
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build PDF file
run: latexmk -pdf
- name: Run scripts
run: apt update && apt install -y nodejs && node scripts/abstract.js > abstract.log
- name: Organize files to upload
run: mkdir -p docs && cp *.pdf *.log ./docs/
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload "docs" directory
path: "docs"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4