Skip to content

Commit

Permalink
Fix pushing tagged commit to main
Browse files Browse the repository at this point in the history
  • Loading branch information
jehna committed Oct 18, 2024
1 parent ef72963 commit 1443228
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"deploy:patch": "npm version patch && npm run deploy:release",
"deploy:minor": "npm version minor && npm run deploy:release",
"deploy:major": "npm version major && npm run deploy:release",
"deploy:release": " git push --tags && npm run build && npm publish && npm run deploy:create-github-release",
"deploy:release": " git push --tags && git push && npm run build && npm publish && npm run deploy:create-github-release",
"deploy:create-github-release": "tar -czvf dist.tar.gz dist && gh release create v$npm_package_version --generate-notes dist.tar.gz",
"test": "npm run test:unit && npm run test:e2e && npm run test:llm",
"test:unit": "find src -name '*.test.ts' | xargs tsx --test",
Expand Down

0 comments on commit 1443228

Please sign in to comment.