You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
776 B
YAML
28 lines
776 B
YAML
name: Render Marp Slides
|
|
on: [push]
|
|
jobs:
|
|
build_slides:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Set up Git repository
|
|
uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "*"
|
|
- name: Install dependencies
|
|
run: npm install
|
|
- name: Setup directories
|
|
run: mkdir -p out/ bin/
|
|
- name: Build slides to HTML
|
|
run: npm run build:html
|
|
- name: Build slides to PDF
|
|
run: npm run build:pdf
|
|
- name: deploy on orphan branch
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_dir: ./out
|
|
publish_branch: build
|
|
force_orphan: true |