-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (35 loc) · 1.51 KB
/
prepare-guideline-notebooks.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
on: [workflow_dispatch]
name: Prepare the ipynb for the Guidelines page
jobs:
prepare_guidelines:
runs-on: ubuntu-latest
name: Ipynb for publishing
steps:
- name: checkout repo
uses: actions/checkout@v3
- name: General introduction
id: introduction
uses: c2dh/journal-of-digital-history-ipynb-skim-action@master
with:
notebook: 'examples/Author_Guideline/AuthorGuideline-introduction-raw.ipynb'
output_notebook: 'examples/Author_Guideline/AuthorGuideline-introduction.ipynb'
- name: mac os installation
id: mac
uses: c2dh/journal-of-digital-history-ipynb-skim-action@master
with:
notebook: 'examples/Author_Guideline/AuthorGuideline-mac-raw.ipynb'
output_notebook: 'examples/Author_Guideline/AuthorGuideline-mac.ipynb'
- name: windows installation
id: windows
uses: c2dh/journal-of-digital-history-ipynb-skim-action@master
with:
notebook: 'examples/Author_Guideline/AuthorGuideline-windows-raw.ipynb'
output_notebook: 'examples/Author_Guideline/AuthorGuideline-windows.ipynb'
- name: styling and makeup
id: styling
uses: c2dh/journal-of-digital-history-ipynb-skim-action@master
with:
notebook: 'examples/Author_Guideline/AuthorGuideline-styling-raw.ipynb'
output_notebook: 'examples/Author_Guideline/AuthorGuideline-styling.ipynb'
- name: commit changes
uses: stefanzweifel/git-auto-commit-action@v4