documentation: remove superfluous eol in example #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and publish | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build_and_publish: | |
name: Build and publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- run: sudo apt-get -qq -y install doxygen jekyll graphviz | |
- run: jekyll --version | |
- name: Add libhext documentation | |
run: ./scripts/refresh-libhext-documentation.sh jekyll | |
- name: Add hext.js test cases | |
run: ./scripts/refresh-hext.js-blackbox-tests.sh jekyll | |
- name: Jekyll build | |
shell: bash | |
run: cd jekyll && jekyll build | |
- name: Publish | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: jekyll/_site |