From 5466e312c18998413c92cecc0db20f99848cff1e Mon Sep 17 00:00:00 2001 From: Mirko Mollik Date: Fri, 13 Dec 2024 15:06:56 +0100 Subject: [PATCH] fix: push changes Signed-off-by: Mirko Mollik --- .github/workflows/release.yml | 10 +--------- biome.json | 2 +- package.json | 8 ++++++-- 3 files changed, 8 insertions(+), 12 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dd85f9a6..14f31f8a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -179,14 +179,6 @@ jobs: echo "@sd-jwt:registry=https://registry.npmjs.org/" > .npmrc echo "registry=https://registry.npmjs.org/" >> .npmrc echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc - npm whoami - name: 'Publish latest version' - run: pnpm publish:latest - - - name: 'Format generated files and commit changes' - run: | - pnpm format - git add . - git commit -m "chore: format generated files" - git push origin HEAD:main --tags \ No newline at end of file + run: pnpm publish:latest \ No newline at end of file diff --git a/biome.json b/biome.json index 55803897..3214c482 100644 --- a/biome.json +++ b/biome.json @@ -4,7 +4,7 @@ "enabled": false }, "files": { - "ignore": ["**/dist/**", "**/coverage/**"] + "ignore": ["**/dist/**", "**/coverage/**", "package.json"] }, "formatter": { "enabled": true, diff --git a/package.json b/package.json index adec1339..16b9b459 100644 --- a/package.json +++ b/package.json @@ -9,11 +9,15 @@ "test": "vitest run --coverage.enabled=true --coverage.include=packages/*", "test:watch": "vitest", "clean": "lerna clean -y", - "publish:latest": "lerna publish --no-private --conventional-commits --include-merged-tags --create-release github --yes --dist-tag latest --no-push", + "publish:latest": "lerna publish --no-private --conventional-commits --include-merged-tags --create-release github --yes --dist-tag latest", "publish:next": "lerna publish --no-private --conventional-prerelease --force-publish --canary --no-git-tag-version --include-merged-tags --preid next --pre-dist-tag next --yes", "prepare": "husky" }, - "keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"], + "keywords": [ + "sd-jwt", + "sdjwt", + "sd-jwt-vc" + ], "engines": { "node": ">=18", "pnpm": ">=9"