Skip to content

Commit

Permalink
chore(workflows): test eof solution for multiline
Browse files Browse the repository at this point in the history
  • Loading branch information
vijayhardaha committed Jun 25, 2024
1 parent f42abdd commit 2ae0e29
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@ jobs:
- name: Find files to upload
id: find_files
run: |
files=$(find . -type f \( -name "*.txt" -o -name "*.json" -o -name "*.md" -o -name "*.csv" \))
echo "files=$files" >> $GITHUB_ENV
files=$(find ./dist -type f \( -name "*.txt" -o -name "*.json" -o -name "*.md" -o -name "*.csv" \))
echo "files<<EOF" >> $GITHUB_ENV
echo "$files" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Create GitHub Release
id: create_release
Expand Down

0 comments on commit 2ae0e29

Please sign in to comment.