Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 17, 2021 02:40 pm GMT

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 Generationon:  push:    branches:      - mainjobs:  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: '[email protected]'        COMMIT_MESSAGE: 'Updated Ibis Exorted Files'

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 Generationon:  push:    branches:      - mainjobs:  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: '[email protected]'        COMMIT_MESSAGE: 'Updated Ibis Exorted Files'

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!


Original Link: https://dev.to/bobbyiliev/automate-your-ibis-ebook-build-process-no5

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To