Last active
December 6, 2018 15:05
-
-
Save BryanSchuetz/bc25f6684d51e0c83b88dc5c68beca8a to your computer and use it in GitHub Desktop.
A workflow for building your custom Jekyll site, and deploying it back to the gh-pages branch of your repository.
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
workflow "Deploy Site" { | |
on = "push" | |
resolves = ["Build and Deploy Jekyll"] | |
} | |
action "Build and Deploy Jekyll" { | |
uses = "BryanSchuetz/jekyll-deploy-gh-pages@master" | |
secrets = ["GITHUB_TOKEN"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment