Skip to content

Commit

Permalink
refs #2 ビルドキャッシュのマッチングの階層構造を変更する
Browse files Browse the repository at this point in the history
  • Loading branch information
t2y committed Dec 4, 2021
1 parent 0ae9abd commit 67007cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@
with:
maven-test-command: "test -DfailIfNoTests=false -Dtest='!IntegrationTest'"
maven-settings-xml-path: "${{ github.workspace }}/settings.xml"
custom-cache-path: '!~/.m2/repository/com'
custom-cache-path: '!~/.m2/repository/com/subdomain'
push-on-success: 'true'
```
`custom-cache-path` は [actions/cache](https://github.com/actions/cache) に渡す `path` を記述します。`!` を使うことでキャッシュ対象から除外できます。この例では `~/.m2/repository/com` 配下のディレクトリをすべてキャッシュしない設定になります。
`custom-cache-path` は [actions/cache](https://github.com/actions/cache) に渡す `path` を記述します。`!` を使うことでキャッシュ対象から除外できます。この例では `~/.m2/repository/com/subdomain` 配下のディレクトリをすべてキャッシュしない設定になります。

リポジトリに push するには GITHUB_TOKEN や permissions といった認証情報を適切に設定する必要があります。

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ runs:
uses: actions/cache@v2
with:
path: |
~/.m2/repository/*
~/.m2/repository/*/*
${{ inputs.custom-cache-path }}
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
Expand Down

0 comments on commit 67007cd

Please sign in to comment.