Skip to content

Commit faaece3

Browse files
committed
Fix file path in workflow to correctly find lines files
1 parent 3b87a23 commit faaece3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish_extensions_push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v4
1919
- id: set-files
2020
run: |
21-
files=$(find ob_v3p0/ -type f -name "*.lines" | jq -R . | jq -s .)
21+
files=$(find extensions/ -type f -name "*.lines" | jq -R . | jq -s .)
2222
echo "files=$files" >> $GITHUB_OUTPUT
2323
2424
process-lines-files:

0 commit comments

Comments
 (0)