ci: update release workflow try5

This commit is contained in:
Ritesh Ghosh
2025-05-12 00:36:11 +05:30
parent b60d8bfa16
commit aeb29c8da4
+3 -1
View File
@@ -37,4 +37,6 @@ jobs:
body: ${{ steps.changelog.outputs.clean_changelog }}
- name: Fix identation in package.json
run: npx prettier --config ../../prettier.config.mjs --write package.json
run: |
tmp=$(mktemp)
jq --indent 4 . package.json > "$tmp" && mv "$tmp" package.json