Skip to content

Commit

Permalink
makefile: use bash shell so github actions work
Browse files Browse the repository at this point in the history
  • Loading branch information
willcl-ark committed Dec 4, 2023
1 parent dc9a381 commit 6e97419
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ production: clean all production-test
## https://github.com/bitcoinops/bitcoinops.github.io/pull/494#discussion_r546376335
export GIT_PAGER='_contrib/kill0'
JEKYLL_FLAGS = --future --drafts --unpublished --incremental
## Needed for github actions to work properly
SHELL=/bin/bash

clean:
bundle exec jekyll clean
Expand Down Expand Up @@ -61,5 +63,5 @@ pdf:
mv onboarding-to-bitcoin-core.pdf bin/

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

0 comments on commit 6e97419

Please sign in to comment.