We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f9449e commit e0a051cCopy full SHA for e0a051c
.github/workflows/publish-auxiliary-packages.yml
@@ -58,3 +58,10 @@ jobs:
58
npm config list
59
echo "Publishing packages as $(npm whoami)"
60
npm run publish-auxiliary
61
+
62
+ - name: "Publish tags"
63
+ run: |
64
+ npx lerna list -a --json | \
65
+ jq -r '.[] | select(.name != "mongosh") | .name + "@" + .version' | \
66
+ xargs -i sh -c "git tag -a {} -m {} || true"
67
+ git push --follow-tags
0 commit comments