Skip to content

Commit 4c7d2f9

Browse files
authored
Update github-actions-demo.yml
fix bash typo - remove blanks in assignment of TARGET_FOLDER
1 parent 3e2de52 commit 4c7d2f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: List files in the repository
2727
run: |
28-
TARGET_FOLDER = "${{ github.workspace }}/DescriptiveStatistics"
28+
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)