Skip to content

Commit 13bf4d9

Browse files
committed
Use parsed environment file to calculate env (when not provided)
1 parent 4b4b72a commit 13bf4d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ runs:
6363
map(. |
6464
capture("(?:(?<key>[\\w\\-_]+)\\|)?(?<path>[\\w\\-_\\/]+)") |
6565
{
66-
"${{ inputs.output-key-name }}": .key // "${{ inputs.default-key }}",
66+
"${{ inputs.output-key-name }}": .key // $filters[.path] // "${{ inputs.default-key }}",
6767
"path": .path
6868
})
6969
' <(echo $CHANGED_PATHS) ${{ inputs.filter-file }} | jq -c`" >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)