Skip to content

Commit

Permalink
add --base every where we have args specified
Browse files Browse the repository at this point in the history
  • Loading branch information
tgaff committed Oct 24, 2023
1 parent 2827d0d commit c53d1e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Here is how to pass the arguments.
uses: lycheeverse/[email protected]
with:
# Check all markdown and html files in repo (default)
args: --verbose --no-progress './**/*.md' './**/*.html' './**/*.rst'
args: --base . --verbose --no-progress './**/*.md' './**/*.html' './**/*.rst'
# Use json as output format (instead of markdown)
format: json
# Use different output file path
Expand Down Expand Up @@ -143,7 +143,7 @@ In order to mitigate issues regarding rate limiting or to reduce stress on exter
- name: Run lychee
uses: lycheeverse/[email protected]
with:
args: "--cache --max-cache-age 1d ."
args: "--base . --cache --max-cache-age 1d ."
```
It will compare and save the cache based on the given key.
Expand All @@ -163,7 +163,7 @@ If you need more control over when caches are restored and saved, you can split
- name: Run lychee
uses: lycheeverse/[email protected]
with:
args: "--cache --max-cache-age 1d ."
args: "--base . --cache --max-cache-age 1d ."

- name: Save lychee cache
uses: actions/cache/save@v3
Expand Down

0 comments on commit c53d1e2

Please sign in to comment.