diff --git a/.github/workflows/publish-on-push.yml b/.github/workflows/publish-on-push.yml index 6186592..fa0bb01 100644 --- a/.github/workflows/publish-on-push.yml +++ b/.github/workflows/publish-on-push.yml @@ -15,6 +15,11 @@ jobs: - run: npm ci - run: npm run build:ci + - uses: EndBug/add-and-commit@v9 + with: + fetch: false + message: 'Update version' + - id: publish uses: JS-DevTools/npm-publish@v1 with: diff --git a/package-lock.json b/package-lock.json index 222f4fd..f01799c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@typestrong/ts-mockito", - "version": "2.6.7", + "version": "2.6.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@typestrong/ts-mockito", - "version": "2.6.7", + "version": "2.6.8", "license": "MIT", "dependencies": { "@babel/parser": "^7.24.7", diff --git a/package.json b/package.json index 7ebfc80..dba0581 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@typestrong/ts-mockito", - "version": "2.6.7", + "version": "2.6.8", "description": "Mocking library for TypeScript", "main": "lib/ts-mockito.js", "typings": "lib/ts-mockito", @@ -22,8 +22,8 @@ "mv:lib": "mv lib dist/ts-mockito/", "cp:pkjson": "cp -rf package.json dist/ts-mockito/", "cp:all": "npm run cp:readme && npm run cp:license && npm run cp:pkjson", - "build": "npm run bump && npm run compile && npm run mkdir:dist && npm run cp:all && npm run mv:lib", - "build:ci": "npm run compile && npm run mkdir:dist && npm run cp:all && npm run mv:lib", + "build": "npm run compile && npm run mkdir:dist && npm run cp:all && npm run mv:lib", + "build:ci": "npm run bump && npm run compile && npm run mkdir:dist && npm run cp:all && npm run mv:lib", "bump": "npm version patch --force" }, "author": "kuster.maciej@gmail.com",