Skip to content

Commit da5c8ca

Browse files
committed
📝 chore: display the content of changed_files.txt
1 parent d375c32 commit da5c8ca

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,15 @@ runs:
3535
id: files
3636
run: |
3737
git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep "^articles/.*\.md$" > changed_files.txt
38+
echo "Changed markdown files:"
39+
cat changed_files.txt
3840
continue-on-error: true
3941
shell: bash
4042

4143
- name: Convert Zenn articles to Qiita format
4244
run: |
4345
for file in $(cat changed_files.txt); do
44-
sh bin/ztoq.sh "$file"
46+
bash bin/ztoq.sh "$file"
4547
done
4648
shell: bash
4749
if: steps.files.outcome == 'success'

0 commit comments

Comments
 (0)