Skip to content

Commit

Permalink
Adds GitHub Actions deploy.
Browse files Browse the repository at this point in the history
  • Loading branch information
ashfurrow committed Oct 11, 2024
1 parent 580aad4 commit 26fac2b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Middleman

on:
push:
branches: [master]

jobs:
build_and_deploy:
name: Build & Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build & Deploy to GitHub Pages
with:
REMOTE_BRANCH: gh-pages
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: yurikoval/middleman-gh-pages-action@master

0 comments on commit 26fac2b

Please sign in to comment.