diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml new file mode 100644 index 0000000..194cc8d --- /dev/null +++ b/.github/workflows/npm-publish.yml @@ -0,0 +1,30 @@ +# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions +name: Publish npm Package + +on: + push: + branches: + - master + - main + +jobs: + publish-npm: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 20 + registry-url: https://registry.npmjs.org/ + - run: git config --global user.name "GitHub CD bot" + - run: git config --global user.email "github-cd-bot@example.com" + - run: npx semantic-release + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # push the version changes to GitHub + - run: git add package.json && git commit -m'update version' && git push + env: + # The secret is passed automatically. Nothing to configure. + github-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/package.json b/package.json index 209e16a..b0fab5e 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/codecept-js/create-codeceptjs.git" + "url": "git+https://github.com/codeceptjs/create-codeceptjs.git" }, "keywords": [ "codeceptjs", @@ -21,9 +21,9 @@ "author": "Michael Bodnarchuk", "license": "ISC", "bugs": { - "url": "https://github.com/codecept-js/create-codeceptjs/issues" + "url": "https://github.com/codeceptjs/create-codeceptjs/issues" }, - "homepage": "https://github.com/codecept-js/create-codeceptjs#readme", + "homepage": "https://github.com/codeceptjs/create-codeceptjs#readme", "dependencies": { "cfonts": "2.8.5", "chalk": "4.1.0",