Hi
I want set path for github action cache is ${{ github.workspace }}/project
and exclude ${{ github.workspace }}/project/exclude_cache.txt
- name: Cache
uses: actions/cache@v2
id: cache-build
with:
path: "${{ github.workspace }}/project"
key: ${{ runner.os }}-project-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-project
How to add exclude file in path of cache?