From 06abe7fd0cfb0937a943272ed6ea7876f4152080 Mon Sep 17 00:00:00 2001 From: Gary Date: Thu, 10 Mar 2022 01:05:58 +0800 Subject: [PATCH] Update document by fix yaml syntax error (#8991) Merge pull request 8991 --- docs/_docs/continuous-integration/github-actions.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/_docs/continuous-integration/github-actions.md b/docs/_docs/continuous-integration/github-actions.md index 25ce27a1..acf8afb1 100644 --- a/docs/_docs/continuous-integration/github-actions.md +++ b/docs/_docs/continuous-integration/github-actions.md @@ -114,11 +114,11 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions/cache@v2 - with: - path: vendor/bundle - key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }} - restore-keys: | - ${{ runner.os }}-gems- + with: + path: vendor/bundle + key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }} + restore-keys: | + ${{ runner.os }}-gems- - uses: helaili/jekyll-action@v2 with: token: ${{ secrets.GITHUB_TOKEN }}