Skip to content

fix: Jackson JsonPropertySorter handling non-getter methods #401

fix: Jackson JsonPropertySorter handling non-getter methods

fix: Jackson JsonPropertySorter handling non-getter methods #401

Workflow file for this run

name: Slate Docs
on:
pull_request:
push:
branches:
- main
release:
types:
- created
jobs:
build:
runs-on: ubuntu-latest
env:
ruby-version: 2.7
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.ruby-version }}
- uses: actions/cache@v1
with:
path: vendor/bundle
key: gems-${{ runner.os }}-${{ env.ruby-version }}-${{ hashFiles('**/Gemfile.lock') }}
- run: bundle config set deployment 'true'
working-directory: ./slate-docs
- run: bundle install
working-directory: ./slate-docs
- run: bundle exec middleman build
working-directory: ./slate-docs
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.event_name == 'release' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./slate-docs/build