Skip to content

Commit 3e2de52

Browse files
authored
Update github-actions-demo.yml
fix typo $TARGET_FOLDER -> "$TARGET_FOLDER"
1 parent 6125d70 commit 3e2de52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/github-actions-demo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ jobs:
2727
run: |
2828
TARGET_FOLDER = "${{ github.workspace }}/DescriptiveStatistics"
2929
echo "Listing all files in $TARGET_FOLDER of the workspace directory "
30-
find $TARGET_FOLDER -mindepth 2 -type f -name "*.py"
30+
find "$TARGET_FOLDER" -mindepth 2 -type f -name "*.py"
3131
- run: echo "🍏 This job's status is ${{ job.status }}."

0 commit comments

Comments
 (0)