diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6cf2534..7c99e73 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -83,7 +83,6 @@ jobs: with: node-version: 18 check-latest: true - # cache: pnpm - name: Install uses: dtolnay/rust-toolchain@stable if: ${{ !matrix.settings.docker }} @@ -127,18 +126,6 @@ jobs: name: bindings-${{ matrix.settings.target }} path: ${{ env.APP_NAME }}.*.node if-no-files-found: error - - name: Upload artifact index.js - uses: actions/upload-artifact@v3 - with: - name: bindings-${{ matrix.settings.target }} - path: index.js - if-no-files-found: error - - name: Upload artifact index.d.ts - uses: actions/upload-artifact@v3 - with: - name: bindings-${{ matrix.settings.target }} - path: index.d.ts - if-no-files-found: error publish: name: Publish runs-on: ubuntu-latest @@ -151,7 +138,6 @@ jobs: with: node-version: 18 check-latest: true - # cache: pnpm - name: Install dependencies run: npx pnpm install - name: Download all artifacts @@ -163,12 +149,11 @@ jobs: - name: List packages run: ls -R ./npm shell: bash + - name: build ts + run: npx pnpm build - name: List Dir run: ls -la shell: bash - - name: List artifacts - run: ls -la artifacts - shell: bash - name: Publish run: | echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc diff --git a/package.json b/package.json index 9d9424b..7fcf4bf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nylon-rs", - "version": "2.0.1", + "version": "2.0.2", "description": "Nylon is a web framework for Node.js built with Tokio, Tower, Hyper, and Napi-rs", "main": "index.js", "repository": "https://github.com/Aitthi/nylon",