Skip to content

Commit

Permalink
fix: problem matcher path (#4)
Browse files Browse the repository at this point in the history
fixes the action failing with

```
Unable to process command '::add-matcher::.github/deno-matcher.json' successfully.
Could not find file '/home/runner/work/$ORG/$REPO/.github/deno-matcher.json'.
```
  • Loading branch information
nekowinston authored Dec 20, 2023
1 parent 86e9d15 commit 9609930
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ runs:

- name: Register Deno problem matchers
shell: bash
run: echo "::add-matcher::.github/deno-matcher.json"
run: echo "::add-matcher::${{ github.action_path }}/.github/deno-matcher.json"

- name: Cache Deno dependencies
id: cache-deno
Expand Down

0 comments on commit 9609930

Please sign in to comment.