Skip to content

Commit

Permalink
convert into string first
Browse files Browse the repository at this point in the history
  • Loading branch information
codingkarthik committed Jul 16, 2024
1 parent 2fbb3ba commit 4a3eb75
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/registry-updates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ jobs:
- name: Print out all the changed files
env:
ADDED_FILES: ${{ steps.changed-files.outputs.added_files }}
MODIFIED_FILES: ${{ steps.changed-files.outputs.modified_files }}
DELETED_FILES: ${{ steps.changed-files.outputs.deleted_files }}
ADDED_FILES: ${{ string(steps.changed-files.outputs.added_files) }}
MODIFIED_FILES: ${{ string(steps.changed-files.outputs.modified_files) }}
DELETED_FILES: ${{ string(steps.changed-files.outputs.deleted_files) }}
run: |
echo "{\"added_files\": $ADDED_FILES, \"modified_files\": $MODIFIED_FILES, \"deleted_files\": $DELETED_FILES}" > changed_files.json
Expand Down

0 comments on commit 4a3eb75

Please sign in to comment.