POST POST

NOV
10
2020

From Travis CI to GitHub Actions (and GitHub Pages)

ORIGINALLY POSTED TO: https://www.davidwesst.com/blog/from-travis-ci-to-github-actions

We recently migrated the continuous integration and deployment workflow for the Western Devs website from Travis CI to GitHub Actions. These are the steps I followed to get it done.

Travis CI announced a new pricing model that could have impact on open source projects that are using Travis for continuous integration and/or deployment. For static websites, like the Western Devs website or personal website, this could result in getting some unforeseen costs. With that in mind, we decided to take the plunge an migrate away from Travis and over to GitHub Actions as they provide CI and CD workflows free for open source projects.

TL;DR; -- Just show me the code

Fine. Here is is. It is open source after all.

But just to be clear, this isn't a tutorial on how to code this up, rather its a walkthrough on what it took to get our Hexo based static site from Travis to GitHub Actions.

Start with Mapping Out Your Workflow

And I mean workflow and not just the build.

For the Western Devs, our workflow goes like this:

  1. Commit a change to the code (i.e. a new blog post)
  2. Build the website
  3. If master branch build is successful, deploy the build to production
  4. Notify the Western Devs of the build result in Slack

GitHub workflow provides everything we need to do this, and I'll walk you through the code, which you can see for yourself in here in our GitHub repo.

1. Commit a change to the code (i.e. a new blog post)

This is our trigger to start the workflow. That is represented by the on section of the YAML. In our case, we want to trigger the workflow every time there is a pull request created for the master branch, a push to the master branch (i.e. a merge), or a push to any other feature (ft) or hotfix (hf) branches.

1
2
3
4
5
6
7
8
9
10

name: CI/CD
on:
push:
branches:
- master
- ft/*
- hf/*
pull_request:
branches: [ master ]

Now we have a workflow that will trigger when we want to. Next, we need to actually build the website.

2. Build the website

Our build is exceptionally simple-- just generate the site, and if the generation is successful, the build was successful. To do this, we create a build job that handles the work.

1
2
3
4
5
6
7
8
9
10
11
12

jobs:
build:
name: Build and Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2 # checkout the source code
- uses: actions/setup-node@v1 # setup the environment
with:
node-version: 12
- run: npm install # setup dependencies
- run: npm run build # run the build command

The first two steps are using GitHub Actions provided by GitHub themselves. This pulls our source code and the sets up the Node environment that we need to build the website. Once that is done, we run steps to run shell commands to install our project specific dependendies and run the build script itself.

The scripts have been defined in our project package.json file and are used by the developers to build the site locally as well.

3. If master branch build is successful, deploy the build to production

If we are talking about the master branch, we want to do a deployment if it is successful. For this step, we added a conditional expression using the github context that is provided to all actions. You can learn more about context and expressions for GitHub Actions in the GitHub Docs here.

You might also see that were using an encrypted secret using the secret.GITHUB_TOKEN expression. All repositories have this feature in the settings section of the repo, and you can learn more about creating encrypted secrets for a repository here in the GitHub docs.

1
2
3
4
5
6
7
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/master'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
cname: westerndevs.com
commit_message: ${{ github.event.head_commit.message }}

BONUS: Free hosting with GitHub Pages

In our case, our deployment target is GitHub Pages which provides free hosting and SSL certificates for open source static sites sites like ours.

We decided to take this opportunity to consilate everything under the GitHub umbrella because it saved us a couple of bucks, and now everything we need to manage the site is in one spot rather than spread across multiple cloud services.

4. Notify the Western Devs of the build result in Slack

Originally, we had forgotten this step and started to feel it right away. So an issue was created and I put a solution in place in about 15 minutes, thanks to someone else doing all the heavy lifting and publishing their work to the GitHub Actions Marketplace.

Slack supports incoming webhooks, even for for free workspaces. I set that up by following the Slack documentation, created another secret in our repository and voila, we were back in business wih the notifications.

1
2
3
4
5
6
7
8
- name: Notify Slack
if: always()
uses: 8398a7/action-slack@v3
with:
status: ${{ job.status }}
fields: repo,message,commit,author,action,eventName,ref,workflow,job,took # selectable (default: repo,message)
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required

Conclusion

The combination of GitHub Actions and GitHub Pages provides every developer with the opportunity to get a taste of DevOps while actually producing something they can show off to their peers and community. Travis CI is, and will continue to be, a great CI/CD solution for developers...but if you're looking for a one-stop-shop for source control, workflow, and hosting. You can't really go wrong with GitHub.


David Wesst

Email Email
Web Web
Twitter Twitter
GitHub GitHub
LinkedIN LinkedIn
RSS

Looking for someone else?

You can find the rest of the Western Devs Crew here.

© 2015 Western Devs. All Rights Reserved. Design by Karen Chudobiak, Graphic Designer