Skip to content

Commit

Permalink
CI: fix passing of allowed extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
grzegorzkrukowski committed Jul 13, 2023
1 parent 63a8e6c commit 9b75b2d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/extensions_build_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,11 @@ jobs:
run: |
file_path="${{ github.workspace }}/.github/public_raycast_extensions.txt"
if [[ -f "$file_path" ]]; then
echo "value<<EOF" >> $GITHUB_OUTPUT
cat "$file_path"; echo >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
echo "value<<EOF" >> "$GITHUB_OUTPUT"
while IFS= read -r line; do
echo "$line" >> "$GITHUB_OUTPUT"
done < "$file_path"
echo "EOF" >> "$GITHUB_OUTPUT"
fi
- name: Run Ray CLI
id: ray_cli
Expand Down

0 comments on commit 9b75b2d

Please sign in to comment.