Skip to content

Commit 6e97419

Browse files
committed
makefile: use bash shell so github actions work
1 parent dc9a381 commit 6e97419

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ production: clean all production-test
1010
## https://github.com/bitcoinops/bitcoinops.github.io/pull/494#discussion_r546376335
1111
export GIT_PAGER='_contrib/kill0'
1212
JEKYLL_FLAGS = --future --drafts --unpublished --incremental
13+
## Needed for github actions to work properly
14+
SHELL=/bin/bash
1315

1416
clean:
1517
bundle exec jekyll clean
@@ -61,5 +63,5 @@ pdf:
6163
mv onboarding-to-bitcoin-core.pdf bin/
6264

6365
epub:
64-
asciidoctor -b epub3 -r asciidoctor-epub3 -r asciidoctor-diagram -o index.epub index_epub.adoc
66+
bundle exec asciidoctor -b epub3 -r asciidoctor-epub3 -r asciidoctor-diagram -o index.epub index_epub.adoc
6567
mv index.epub bin/onboarding-to-bitcoin-core.epub

0 commit comments

Comments
 (0)