diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9c9177e..5d2b85c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,5 +38,6 @@ jobs: - name: Fix identation in package.json run: | - tmp=$(mktemp) - jq --indent 4 . package.json > "$tmp" && mv "$tmp" package.json \ No newline at end of file + echo "Fixing identation in package.json" + jq '.' package.json > tmp.json && mv tmp.json package.json + echo "Done" \ No newline at end of file