diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5835225..ca88455 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: with: node-version: 12.x - name: Building package - run: npm ci + run: npm i - name: Testing package run: npm test @@ -30,7 +30,7 @@ jobs: with: node-version: 12.x registry-url: https://registry.npmjs.org/ - - run: npm ci + - run: npm i - run: npm publish --access=public env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} @@ -44,7 +44,5 @@ jobs: with: node-version: 12.x registry-url: https://npm.pkg.github.com/ - - run: npm ci - - run: npm publish --access=public - env: - NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} + - run: npm i + - run: npm pack diff --git a/package.json b/package.json index 33c111c..ed6873c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@rrangelo/ini-config", - "version": "1.0.15", + "version": "1.0.16", "description": "Load app config from config.ini file in root or specific path", "main": "index.js", "scripts": {