Skip to content

Commit c132929

Browse files
committed
docs: update README.md for v0.6.0
1 parent 9831d7d commit c132929

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,16 @@ jobs:
8787
# Use GitHub Actions' cache to cache dependencies on servers
8888
- uses: actions/cache@v3
8989
with:
90-
path: vendor/bundle
91-
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
90+
path: |
91+
.asdf/**
92+
vendor/bundle
93+
key: ${{ runner.os }}-cache-${{ hashFiles('**/cache.key') }}
9294
restore-keys: |
93-
${{ runner.os }}-gems-
95+
${{ runner.os }}-cache-
9496
9597
# Use GitHub Deploy Action to build and deploy to Github
9698
# For latest version: `jeffreytse/jekyll-deploy-action@master`
97-
- uses: jeffreytse/jekyll-deploy-action@v0.5.1
99+
- uses: jeffreytse/jekyll-deploy-action@v0.6.0
98100
with:
99101
provider: 'github' # Default is github
100102
token: ${{ secrets.GITHUB_TOKEN }} # It's your Personal Access Token(PAT)
@@ -104,7 +106,8 @@ jobs:
104106
jekyll_src: './' # Default is root directory
105107
jekyll_cfg: '_config.yml' # Default is _config.yml
106108
jekyll_baseurl: '' # Default is according to _config.yml
107-
bundler_ver: '' # Default is compatible bundler version (~>2.4.0)
109+
ruby_ver: '' # Default is 3.2.0 version
110+
bundler_ver: '' # Default is compatible bundler version (~>2.5.0)
108111
cname: '' # Default is to not use a cname
109112
actor: '' # Default is the GITHUB_ACTOR
110113
pre_build_commands: '' # Installing additional dependencies (Arch Linux)

0 commit comments

Comments
 (0)