diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 2c456e8..ddf22dd 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -8,19 +8,7 @@ on: types: [created] jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 - with: - node-version: 12 - - run: npm ci - - run: npm test - - run: npm run build - publish-npm: - needs: build runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -28,7 +16,6 @@ jobs: with: node-version: 12 registry-url: https://registry.npmjs.org/ - - run: npm ci - run: npm run build - run: npm publish env: diff --git a/package.json b/package.json index a3baf3a..1f670f3 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,9 @@ { "name": "whmcs-node", - "version": "1.0.7", + "version": "1.0.8", "description": "", "main": "dist/index.js", + "types": "dist/index.d.ts", "scripts": { "build": "tsc" },