Skip to content

Add device requirements #12

Add device requirements

Add device requirements #12

Workflow file for this run

name: Ruby
on:
push:
branches: [ master ]
jobs:
test:
name: Build and deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
name: Set up Ruby
with:
#ruby-version: 2.6 # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run build
run: bundle exec middleman build
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
if: job.status == 'success'