Corrette le dipendenze per la generazione PDF #33
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: Genera PDF | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'slide/*.*' | |
- '.github/workflows/generatepdf.yml' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: generate pdf | |
run: | | |
cd slide | |
cp Corso_AI.md Corso_AI-backup.md | |
sed -i "s/%date%/$(date +'%Y-%m-%d')/g" Corso_AI.md | |
sed -i "s/%time%/$(date +'%H:%M')/g" Corso_AI.md | |
sed -i "s/%version%/$(git rev-parse --short HEAD)/g" Corso_AI.md | |
npx @marp-team/marp-cli@latest Corso_AI.md --pdf --allow-local-files | |
rm Corso_AI.md | |
mv Corso_AI-backup.md Corso_AI.md | |
# docker run --rm --init -v $PWD:/home/marp/app/ -e LANG="it_IT.UTF-8" -e MARP_USER="$(id -u):$(id -g)" marpteam/marp-cli Corso_AI.md --pdf --allow-local-files --html | |
- name: commit & push | |
run: | | |
git add -A | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add . | |
git commit -m "update slides" | |
git push |