Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Dec 29, 2023
1 parent 2f947c4 commit e302902
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,7 @@ Verify that certain files or directories did or did not change during the workfl
- name: Run step only when any of the above files change.
if: steps.verify-changed-files.outputs.files_changed == 'true'
env:
FILES_CHANGED: |-
${{ steps.verify-changed-files.outputs.changed_files }}
CHANGED_FILES: ${{ steps.verify-changed-files.outputs.changed_files }}
run: |
echo "Changed files: $FILES_CHANGED"
# Outputs: "Changed files: new.txt test_directory/new.txt"
Expand Down Expand Up @@ -105,7 +104,7 @@ Verify that certain files or directories did or did not change during the workfl

- name: List all changed tracked and untracked files
env:
FILES_CHANGED: ${{ steps.verify-changed-files.outputs.changed_files }}
CHANGED_FILES: ${{ steps.verify-changed-files.outputs.changed_files }}
run: |
echo "Changed files: $FILES_CHANGED"
```
Expand Down

0 comments on commit e302902

Please sign in to comment.