Skip to content

Commit

Permalink
ci: remove yaml and json from dist
Browse files Browse the repository at this point in the history
  • Loading branch information
pratikbin committed Jan 15, 2022
1 parent 2eb95eb commit fa55a0f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:
shell: bash
run: |
tree ./dist
find ./dist -name *.json* -type f -exec rm -f {} \;
find ./dist -regextype sed -regex ".*\.\(json\|yaml\)" -type f -exec rm -f {} \;
tree ./dist
mv -f ./dist/**/* ./dist/
- name: Release
Expand Down

0 comments on commit fa55a0f

Please sign in to comment.