Skip to content

Commit ddca802

Browse files
committed
🐛 fix: syntax error
1 parent 281d916 commit ddca802

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

action.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ runs:
3030
- name: Install dependencies
3131
run: npm install
3232
shell: bash
33-
with:
34-
working-directory: ${{ github.action_path }}
33+
working-directory: ${{ github.action_path }}
3534

3635
- name: Get changed markdown files
3736
id: files
@@ -41,17 +40,15 @@ runs:
4140
cat changed_files.txt
4241
continue-on-error: true
4342
shell: bash
44-
with:
45-
working-directory: ${{ github.action_path }}
43+
working-directory: ${{ github.action_path }}
4644

4745
- name: Convert Zenn articles to Qiita format
4846
run: |
4947
for file in $(cat changed_files.txt); do
5048
bash bin/ztoq.sh "$file"
5149
done
5250
shell: bash
53-
with:
54-
working-directory: ${{ github.action_path }}
51+
working-directory: ${{ github.action_path }}
5552
if: steps.files.outcome == 'success'
5653

5754
- name: Commit converted Qiita articles

0 commit comments

Comments
 (0)