fix(ns-paystack): remove github push

This commit is contained in:
Brian Pooe 2023-06-04 13:31:31 +02:00
commit 52ad323e49
3 changed files with 11 additions and 12 deletions

View file

@ -125,6 +125,7 @@ jobs:
- name: Release
if: ${{ success() && (github.event_name != 'pull_request' || github.event.action == 'closed' && github.event.pull_request.merged == true) }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |

View file

@ -2,6 +2,9 @@
"name": "@bp-devtools/ns-paystack",
"description": "Powerful library that provides seamless integration with the Paystack payment gateway for your NestJS applications. You can easily handle payment transactions with minimal effort.",
"version": "1.0.0",
"scripts": {
"test": "echo \"Error:no test specified\" && exit 1"
},
"author": {
"name": "Brian Pooe",
"email": "brian.method@gmail.com"
@ -17,7 +20,7 @@
"url": "https://github.com/brianpooe/bp-devtools/issues",
"email": "brian.method@gmail.com"
},
"homepage": "https://github.com/brianpooe/bp-devtools/tree/main/libs/ns-paystack",
"homepage": "https://github.com/brianpooe/bp-devtools/tree/main/libs/ns-paystack#readme",
"keywords": [
"nestjs",
"paystack",
@ -27,5 +30,9 @@
"payment",
"integration",
"API"
]
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
}
}

View file

@ -16,15 +16,6 @@ module.exports = {
changelogFile: `${srcRoot}/CHANGELOG.md`
}
],
'@semantic-release/npm',
[
'@semantic-release/git',
{
assets: [`${srcRoot}/package.json`, `${srcRoot}/CHANGELOG.md`],
message:
`release(version): Release ${name} ` +
'${nextRelease.version} [skip ci]\n\n${nextRelease.notes}'
}
]
'@semantic-release/npm'
]
};