Skip to content

Commit

Permalink
fix: 流水线没有写入权限
Browse files Browse the repository at this point in the history
  • Loading branch information
pysio2007 committed Nov 6, 2024
1 parent a3f53ca commit d24df6f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/convert_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,16 @@ jobs:
fi
done
- name: Clean up input folder
run: |
input_dir='input'
for filename in $(ls $input_dir); do
if [ "$filename" == "NULL" ]; then
continue
fi
rm -f "${input_dir}/${filename}"
done
- name: Commit and push changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit d24df6f

Please sign in to comment.