Skip to content

Commit

Permalink
Version bump; testing GHA.
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanb committed Nov 22, 2023
1 parent d302cb3 commit b5ff50f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/mongodb-session-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
git config user.email [email protected]
git fetch
git pull origin main
npm version patch -w package --no-git-tag-version && git add .
npm version patch -ws --include-workspace-root --no-git-tag-version && git add .
VER=`node ./npm-version-helper.cjs package`
git commit -m "@iwsio/mongodb-express-session version bump to $VER"
git tag -am "@iwsio/mongodb-express-session $VER publish." "mongodb-session-$VER"
git push
git push --tags
- run: npm publish --access public -w package
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion demo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "demo",
"version": "0.0.0",
"version": "0.2.0-alpha.1",
"private": true,
"type": "module",
"scripts": {
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iwsio/mongodb-express-session-root",
"version": "0.1.2-alpha.3",
"version": "0.2.0-alpha.1",
"description": "",
"scripts": {
"prebuild": "tsc --build --clean && npm run prebuild -ws --if-present",
Expand Down
2 changes: 1 addition & 1 deletion package/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iwsio/mongodb-express-session",
"version": "0.1.2",
"version": "0.2.0-alpha.1",
"description": "ESM MongoDB session store for Express. Supports TTL and touch.",
"main": "dist/index.js",
"module": "dist/index.js",
Expand Down

0 comments on commit b5ff50f

Please sign in to comment.