diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fd68717..9c9177e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 \ No newline at end of file + run: | + tmp=$(mktemp) + jq --indent 4 . package.json > "$tmp" && mv "$tmp" package.json \ No newline at end of file