Skip to content

Commit

Permalink
fix: push changes (#262)
Browse files Browse the repository at this point in the history
Signed-off-by: Mirko Mollik <[email protected]>
  • Loading branch information
cre8 authored Dec 13, 2024
1 parent 7496794 commit 7a729b7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
run: pnpm publish:latest
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"enabled": false
},
"files": {
"ignore": ["**/dist/**", "**/coverage/**"]
"ignore": ["**/dist/**", "**/coverage/**", "package.json"]
},
"formatter": {
"enabled": true,
Expand Down
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 7a729b7

Please sign in to comment.