Skip to content

Commit c0cfae7

Browse files
authored
Fixed the removal of jekyll thene when updating the gh_pages (#17)
1 parent 081f77b commit c0cfae7

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/gh-pages.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
sudo cp -R ./docs/swagger /publish/docs/swagger
2323
sudo cp ./docs/developers.md /publish/docs/developers.md
2424
sudo cp ./docs/features.md /publish/docs/features.md
25-
25+
sudo cp ./docs/_config.yml /publish/docs/_config.yml
2626
- name: Deploy Markdown Files 🚀
2727
uses: peaceiris/actions-gh-pages@v3
2828
with:

_config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
theme: jekyll-theme-cayman
2+
# markdown: kramdown

lib/emasser/configuration.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def self.raise_unless_present(env)
99
ENV.fetch(env) { raise Emasser::ConfigurationMissingError.new(env) }
1010
rescue Emasser::ConfigurationMissingError => e
1111
puts e.message.red
12-
puts 'See emasser environment variables required in emasser CLI Features'
12+
puts 'See emasser environment variables requirements in emasser CLI Features'
1313
exit
1414
end
1515
# rubocop: enable Style/RaiseArgs

0 commit comments

Comments
 (0)