Skip to content

update Gemfile.lock #31

update Gemfile.lock

update Gemfile.lock #31

Workflow file for this run

name: jekyll
on:
push:
branches:
- main
jobs:
jekyll:
runs-on: ubuntu-latest
steps:
# Use checkout
- uses: actions/checkout@v2
# Use GitHub Actions' cache to shorten build times and decrease load on servers
- uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }}
restore-keys: |
${{ runner.os }}-gems-
# Use jekyll-action
- uses: helaili/jekyll-action@2.2.0
with:
token: ${{ secrets.MM_GH_PAGES_TOKEN }}
target_branch: 'gh-pages'
keep_history: true