Skip to content

[ILX-60230] Update the know limitation (#52) #222

[ILX-60230] Update the know limitation (#52)

[ILX-60230] Update the know limitation (#52) #222

Workflow file for this run

name: Ruby
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Ruby 2.7
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
bundler-cache: true
- name: Build and test with Rake
run: |
gem install bundler -v 2.4.22
bundle install --jobs 4 --retry 3
bundle exec middleman build --clean
- name: GitHub Pages Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
BRANCH: "gh-pages"
FOLDER: "build"
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}