diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 2dd8788..95a2201 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -17,12 +17,9 @@ jobs: uses: actions/setup-node@v1 with: node-version: 12.x - registry-url: https://npm.pkg.github.com - scope: '@MaTeMaTuK' + registry-url: https://registry.npmjs.org - name: NPM Publish - run: | - npm ci - npm publish + run: npm publish env: - NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} diff --git a/package.json b/package.json index 55a645a..1e52c27 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "license": "MIT", "name": "gantt-task-react", "author": "Maksym Vikarii ", + "homepage": "https://github.com/MaTeMaTuK/gantt-task-react", "module": "dist/gantt-task-react.esm.js", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -48,5 +49,10 @@ "autoprefixer": "^9.8.5", "cssnano": "^4.1.10", "rollup-plugin-postcss": "^3.1.2" - } + }, + "keywords": [ + "gantt", + "typescript", + "react" + ] }