Skip to content

Commit 93a0c9c

Browse files
committed
Update GH Actions
1 parent f0fb68b commit 93a0c9c

5 files changed

Lines changed: 38 additions & 31 deletions

File tree

.github/workflows/linuxConvertTest.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/workflows/linuxMain.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ jobs:
1818

1919
- uses: actions/setup-node@v2-beta
2020

21+
- name: install Pandoc
22+
run: sudo wget https://github.com/jgm/pandoc/releases/download/2.14.0.2/pandoc-2.14.0.2-1-amd64.deb && sudo dpkg -i pandoc-2.14.0.2-1-amd64.deb
23+
24+
- name: install AsciiDoctor
25+
run: sudo apt install asciidoctor
26+
2127
- name: install TS
2228
run: npm install typescript
2329

.github/workflows/linuxPullRequest.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ jobs:
1111

1212
- uses: actions/setup-node@v2-beta
1313

14+
- name: install Pandoc
15+
run: sudo wget https://github.com/jgm/pandoc/releases/download/2.14.0.2/pandoc-2.14.0.2-1-amd64.deb && sudo dpkg -i pandoc-2.14.0.2-1-amd64.deb
16+
17+
- name: install AsciiDoctor
18+
run: sudo apt install asciidoctor
19+
1420
- name: install TS
1521
run: npm install typescript
1622

.github/workflows/windowsMain.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,19 @@ jobs:
1818

1919
- uses: actions/setup-node@v2-beta
2020

21+
- name: install Pandoc
22+
uses: crazy-max/ghaction-chocolatey@v1
23+
with:
24+
args: install pandoc
25+
26+
- name: install Ruby
27+
uses: crazy-max/ghaction-chocolatey@v1
28+
with:
29+
args: install ruby
30+
31+
- name: install AsciiDoctor
32+
run: gem install asciidoctor
33+
2134
- name: install TS
2235
run: npm install typescript
2336

.github/workflows/windowsPullRequest.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,19 @@ jobs:
1111

1212
- uses: actions/setup-node@v2-beta
1313

14+
- name: install Pandoc
15+
uses: crazy-max/ghaction-chocolatey@v1
16+
with:
17+
args: install pandoc
18+
19+
- name: install Ruby
20+
uses: crazy-max/ghaction-chocolatey@v1
21+
with:
22+
args: install ruby
23+
24+
- name: install AsciiDoctor
25+
run: gem install asciidoctor
26+
1427
- name: install TS
1528
run: npm install typescript
1629

0 commit comments

Comments
 (0)