-
Notifications
You must be signed in to change notification settings - Fork 2
125 lines (101 loc) · 3.06 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
name: marp-github-actions
on:
push:
branches:
- main
- 'feature/marp/**'
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: 'pages'
cancel-in-progress: false
env:
LANG: 'ja_JP.UTF-8'
jobs:
build-github-desktop:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Setup Packages
run: sudo apt update && sudo apt install jq npm fonts-noto
- name: Install Marp CLI
run: npm install -g @marp-team/marp-cli
- name: Make Directory
run: mkdir dest && cp -r ./git/imgs ./dest/imgs
- name: Build Marp git-tutorial PDF
run: marp $(cat config.json | jq -r .[0].directory)/slide.md
--pdf
-o ./dest/$(cat config.json | jq -r .[0].output_name).pdf
--allow-local-files
- name: Build Marp git-tutorial HTML
run: marp $(cat config.json | jq -r .[0].directory)/slide.md
--html
-o ./dest/$(cat config.json | jq -r .[0].output_name).html
--allow-local-files
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: git
path: ./dest
build-basic-design:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Setup Packages
run: sudo apt update && sudo apt install jq npm fonts-noto
- name: Install Marp CLI
run: npm install -g @marp-team/marp-cli
- name: Make Directory
run: mkdir dest && cp -r ./design/imgs ./dest/imgs
- name: Build Marp design PDF
run: marp $(cat config.json | jq -r .[1].directory)/slide.md
--pdf
-o ./dest/$(cat config.json | jq -r .[1].output_name).pdf
--allow-local-files
- name: Build Marp design HTML
run: marp $(cat config.json | jq -r .[1].directory)/slide.md
--html
-o ./dest/$(cat config.json | jq -r .[1].output_name).html
--allow-local-files
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: design
path: ./dest
upload-slide:
runs-on: ubuntu-latest
needs:
- build-github-desktop
- build-basic-design
steps:
- name: Download git Artifact
uses: actions/download-artifact@v4
- name: Make Directory
run: mkdir pages && cp -r ./git ./pages/git && cp -r ./design ./pages/design
- name: Upload Slide Artifact
uses: actions/upload-artifact@v4
with:
path: ./pages
- name: Upload to GitHub Pages
uses: actions/upload-pages-artifact@v1
with:
path: ./pages
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs:
- upload-slide
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1