DEV Community

Cover image for Automate your Ibis eBook build process with this GitHub Action + Workflow
Bobby Iliev
Bobby Iliev

Posted on

Automate your Ibis eBook build process with this GitHub Action + Workflow

Introduction

The ibis-build-action action is a GitHub Action to automatically run your ibis builds on push events to your main branch.

Ibis is an open-source PHP tool that lets you write eBooks in Markdown. It was created by Mohamed Said who used it to generate his own eBook that he was writing at the time!

Ibis has allowed me to create multiple eBooks already. However not everyone has PHP and Composer installed on their laptops, so people who contribute to your eBook project might not be able to export the PDF of your eBook after their changes.

This is why I decided to create a GitHub Action that would let you automatically generate your Ibis builds directly on GitHub, without having PHP installed on your laptop.


Submission Category:

Maintainer Must-Haves


My Workflow

In order to automatically build your Ibis PDF files, create a directory called .github/workflows/ and add a fill called ibis.yml with the following content:

name: Ibis eBook Generation
on:
  push:
    branches:
      - main

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@main
      with:
        fetch-depth: '0'
    - name: Build Ibis Export Files
      uses: bobbyiliev/ibis-build-action@main
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        IBIS_PATH: './'
        IBIS_BRANCH: 'main'
        EMAIL: 'bobby@bobbyiliev.com'
        COMMIT_MESSAGE: 'Updated Ibis Exorted Files'
Enter fullscreen mode Exit fullscreen mode

Environment Variables

This is the list of the environment variables that you need to keep in mind:

  • GITHUB_TOKEN: Required for permission to tag the repo. You can leave it as it is.
  • IBIS_PATH: The path to the Ibis init folder. By default it is ./ but if you have a custom location, make sure to update it
  • IBIS_BRANCH: The Branch that the Ibis exported files will be commited and pushed to. Default is main.
  • EMAIL: The email address that the commit will be associated with.
  • COMMIT_MESSAGE: The commit message.

Overview

You can find the ibis-build-action GitHub Action repository here:

GitHub logo bobbyiliev / ibis-build-action

GitHub Action to run ibis builds on merge

ibis-build-action

A GitHub Action to automatically run ibis builds on merge to main.

Ibis GitHub Action


Ibis

Ibis is a PHP tool that lets you write eBooks in Markdown.


Usage

In order to automatically build your Ibis PDF files, create a directory called .github/workflows/ and add a fill called ibis.yml with the following content:

name: Ibis eBook Generation
on:
  push:
    branches:
      - main

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@main
      with:
        fetch-depth: '0'
    - name: Build Ibis Export Files
      uses: bobbyiliev/ibis-build-action@main
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        IBIS_PATH: './'
        IBIS_BRANCH: 'main'
        EMAIL: 'bobby@bobbyiliev.com'
        COMMIT_MESSAGE: 'Updated Ibis Exorted Files'
Enter fullscreen mode Exit fullscreen mode

Environment Variables

  • GITHUB_TOKEN: Required for permission to tag the repo. You can leave it as it is.
  • IBIS_PATH: The path to the Ibis…

The ibis-build-action GitHub Action does the following things once added to your repository.

Every time you push to main or merge a PR to main this workflow takes palce:

  • On push (or merge), the action will:
    • Clone the repository
    • Run the ibis build commands including the sample builds
    • Stage and commit the new exported eBook files to the specified branch
    • Pushes tag to GitHub

ibis-build-action screenshot of completed action

This will provide you with your eBook PDF file generated and stored in your repository's content folder.

Ebook Projects using the ibis-build-action GitHub action:

Alternative approach

As brought up to my attention recently by Roberto B, in case that you need more flexibility about managing the PDF, rather than using the ibis-build-action GitHub action, you can produce an artifact instead.

Here is an example GitHub workflow provided by Robert which would do the same build but store the PDF as an artifact:

Ibis artifact workflow

Conclusion

Ibis is a great tool and in case that you are planning to write an eBook make sure to give it a try!

By using the ibis-build-action GitHub Action, you can automate your eBook PDF generation on each push to a specific branch and always have an up-to date export of your eBook!

If you like this, make sure to follow me on Twitter:

@bobbyiliev

I hope that this was helpful!

Top comments (5)

Collapse
 
otumianempire profile image
Michael Otu • Edited

I hope that this was helpful!

Absolutely. It was really helpful.

Collapse
 
bobbyiliev profile image
Bobby Iliev

Thank you Otu Michael! Really appreciate this!

Collapse
 
boiliev profile image
Boyan Iliev

This is a really great GitHub Action! Thanks for sharing it.

Collapse
 
bobbyiliev profile image
Bobby Iliev

Thank you brother!

Collapse
 
bobbyiliev profile image
Bobby Iliev