Skip to content

Commit

Permalink
Deploys Middleman as gh pages
Browse files Browse the repository at this point in the history
  • Loading branch information
kurko committed Apr 22, 2024
1 parent 4bca1f9 commit 4c9e96f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Middleman

on:
push:
branches: [master]

jobs:
build_and_deploy:
name: Build & Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true

- name: Install dependencies
run: bundle install

- 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 4c9e96f

Please sign in to comment.