Skip to content

Commit

Permalink
👷 ci: キャッシュディレクトリのパスの取得コマンドの修正
Browse files Browse the repository at this point in the history
  • Loading branch information
takashi0602 committed Nov 29, 2023
1 parent a97d069 commit f0f8bb4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- name: Get yarn cache directory path
id: cache_dir_path
run: echo "CACHE_DIR_PATH=$(yarn cache dir)" >> $GITHUB_ENV
run: echo "CACHE_DIR_PATH=$(yarn config get cacheFolder)" >> $GITHUB_ENV

- name: Cache yarn cache directory
uses: actions/cache@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-ghpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Get yarn cache directory path
id: cache_dir_path
run: echo "CACHE_DIR_PATH=$(yarn cache dir)" >> $GITHUB_ENV
run: echo "CACHE_DIR_PATH=$(yarn config get cacheFolder)" >> $GITHUB_ENV

- name: Cache yarn cache directory
uses: actions/cache@v3
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:

- name: Get yarn cache directory path
id: cache_dir_path
run: echo "CACHE_DIR_PATH=$(yarn cache dir)" >> $GITHUB_ENV
run: echo "CACHE_DIR_PATH=$(yarn config get cacheFolder)" >> $GITHUB_ENV

- name: Cache yarn cache directory
uses: actions/cache@v3
Expand Down

0 comments on commit f0f8bb4

Please sign in to comment.