Skip to content

Commit

Permalink
Optimize publication workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
spmallette committed Jul 17, 2024
1 parent 038ee2c commit 96e7cbf
Showing 1 changed file with 22 additions and 9 deletions.
31 changes: 22 additions & 9 deletions .github/workflows/build-asciidoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,36 +26,49 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Install Tools
run: |
sudo apt-get install calibre
sudo apt-get install pandoc
- name: Checkout
uses: actions/checkout@v4

- name: Cache Ruby Gems
uses: actions/cache@v3
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
- name: Install Gems
bundler-cache: true

- name: Install Tools
run: |
gem install asciidoctor
gem install pygments.rb
- name: Checkout
uses: actions/checkout@v4
sudo apt-get update
sudo apt-get install --no-install-recommends calibre pandoc
- name: Build Documentation
working-directory: ./book
run: |
gem install asciidoctor
gem install pygments.rb
asciidoctor Practical-Gremlin.adoc
SEARCH_STRING="<h1>PRACTICAL GREMLIN: An Apache TinkerPop Tutorial<\/h1>"
REPLACE_STRING='<img src="PRACTICAL-GREMLIN-Revised-v2.png">\n<h1>PRACTICAL GREMLIN:<br\/>An Apache TinkerPop Tutorial<\/h1>'
sed -i "s|${SEARCH_STRING}|${REPLACE_STRING}|g" "Practical-Gremlin.html"
mkdir ../target
cp Practical-Gremlin.html ../target/index.html
cp ../images/PRACTICAL-GREMLIN-Revised-v2.png ../target
- name: Setup Pages
uses: actions/configure-pages@v3

- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: 'target'

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit 96e7cbf

Please sign in to comment.