From aeb29c8da40e915d2957518ceb33d11eb044ce37 Mon Sep 17 00:00:00 2001 From: Ritesh Ghosh Date: Mon, 12 May 2025 00:36:11 +0530 Subject: [PATCH] ci: update release workflow try5 --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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