generated from KoharaKazuya/marp-cli-action-gh-pages-template
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (39 loc) · 886 Bytes
/
publish-gh-pages.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Publish GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Convert Markdown into HTML and PDF
uses: KoharaKazuya/marp-cli-action@v4
with:
config-file: .marprc.yml
- name: Uploade artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./src
deploy:
runs-on: ubuntu-latest
timeout-minutes: 5
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
pages: write
id-token: write
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4