Skip to content

Commit 7a729b7

Browse files
authored
fix: push changes (#262)
Signed-off-by: Mirko Mollik <[email protected]>
1 parent 7496794 commit 7a729b7

File tree

3 files changed

+8
-12
lines changed

3 files changed

+8
-12
lines changed

.github/workflows/release.yml

+1-9
Original file line numberDiff line numberDiff line change
@@ -179,14 +179,6 @@ jobs:
179179
echo "@sd-jwt:registry=https://registry.npmjs.org/" > .npmrc
180180
echo "registry=https://registry.npmjs.org/" >> .npmrc
181181
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc
182-
npm whoami
183182
184183
- name: 'Publish latest version'
185-
run: pnpm publish:latest
186-
187-
- name: 'Format generated files and commit changes'
188-
run: |
189-
pnpm format
190-
git add .
191-
git commit -m "chore: format generated files"
192-
git push origin HEAD:main --tags
184+
run: pnpm publish:latest

biome.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"enabled": false
55
},
66
"files": {
7-
"ignore": ["**/dist/**", "**/coverage/**"]
7+
"ignore": ["**/dist/**", "**/coverage/**", "package.json"]
88
},
99
"formatter": {
1010
"enabled": true,

package.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,15 @@
99
"test": "vitest run --coverage.enabled=true --coverage.include=packages/*",
1010
"test:watch": "vitest",
1111
"clean": "lerna clean -y",
12-
"publish:latest": "lerna publish --no-private --conventional-commits --include-merged-tags --create-release github --yes --dist-tag latest --no-push",
12+
"publish:latest": "lerna publish --no-private --conventional-commits --include-merged-tags --create-release github --yes --dist-tag latest",
1313
"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",
1414
"prepare": "husky"
1515
},
16-
"keywords": ["sd-jwt", "sdjwt", "sd-jwt-vc"],
16+
"keywords": [
17+
"sd-jwt",
18+
"sdjwt",
19+
"sd-jwt-vc"
20+
],
1721
"engines": {
1822
"node": ">=18",
1923
"pnpm": ">=9"

0 commit comments

Comments
 (0)