From f322e6526eaaca139ca691417f14e8e3b8c7649a Mon Sep 17 00:00:00 2001 From: Boris Verkhovskiy Date: Thu, 15 Jun 2023 14:24:10 +0100 Subject: [PATCH] Publish to npm through GitHub Actions --- .github/workflows/build.yml | 56 ++++++++++++++++++------------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7be752ab..20f8c8d1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,10 +7,13 @@ on: pull_request: branches: - master + release: + types: + - released env: - NODE_PREBUILD_CMD: npx prebuild -t 10.0.0 -t 12.0.0 -t 14.0.0 -t 16.0.0 -t 18.0.0 -t 20.0.0 --strip - ELECTRON_PREBUILD_CMD: npx prebuild -r electron -t 3.0.0 -t 4.0.0 -t 5.0.0 -t 6.0.0 -t 7.0.0 -t 8.0.0 -t 9.0.0 -t 10.0.0 -t 11.0.0 -t 12.0.0 -t 13.0.0 -t 14.0.0 -t 15.0.0 -t 16.0.0 -t 17.0.0 -t 18.0.0 -t 19.0.0 -t 20.0.0 -t 21.0.0 -t 22.0.0 -t 23.0.0 -t 24.0.0 -t 25.0.0 --strip + NODE_PREBUILD_CMD: npx prebuild -t 10.0.0 -t 12.0.0 -t 14.0.0 -t 16.0.0 -t 18.0.0 -t 20.0.0 --strip -u ${{ secrets.GH_TOKEN }} + ELECTRON_PREBUILD_CMD: npx prebuild -r electron -t 3.0.0 -t 4.0.0 -t 5.0.0 -t 6.0.0 -t 7.0.0 -t 8.0.0 -t 9.0.0 -t 10.0.0 -t 11.0.0 -t 12.0.0 -t 13.0.0 -t 14.0.0 -t 15.0.0 -t 16.0.0 -t 17.0.0 -t 18.0.0 -t 19.0.0 -t 20.0.0 -t 21.0.0 -t 22.0.0 -t 23.0.0 -t 24.0.0 -t 25.0.0 --strip -u ${{ secrets.GH_TOKEN }} jobs: @@ -43,6 +46,25 @@ jobs: - run: npm install - run: npm test + publish: + if: ${{ github.event_name == 'release' }} + name: Publish to npm + runs-on: ubuntu-latest + needs: test + steps: + - uses: actions/checkout@v3 + with: + submodules: true + fetch-depth: 0 + - uses: actions/setup-node@v3 + with: + node-version: 20 + registry-url: https://registry.npmjs.org + - run: npm install + - run: npm publish --access public + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + prebuild: strategy: matrix: @@ -51,31 +73,11 @@ jobs: - macos-latest - ubuntu-latest node: - # Node 10-14 fails to prebuild for Node 18+ - # - # macos-latest's Python version is too new to work with the node-gyp - # bundled by prebuild and the "overrides" in package.json for node-gyp - # doesn't work before npm 8.3 (Node 16) - # - # ubuntu-latest has a similar issue but in this case the error is more direct: - # #error "It looks like you are building this native module without - # using the right config.gypi. This normally means that you need to - # update electron-rebuild (>=3.2.8) or node-gyp (>=8.4.0) if you're - # building modules directly." - # - # windows-2019 fails with - # gyp: name 'llvm_version' is not defined while evaluating condition - # 'llvm_version=="0.0"' in binding.gyp while trying to load binding.gyp - # - 10 - # - 12 - # - 14 - - 16 - - 18 - 20 fail-fast: false name: Prebuild with Node ${{ matrix.node }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} - # needs: test + needs: publish steps: - uses: actions/checkout@v3 with: @@ -85,13 +87,11 @@ jobs: with: node-version: ${{ matrix.node }} - run: npm install - - if: matrix.os == 'windows-latest' + - if: runner.os == 'Windows' run: ${{ env.NODE_PREBUILD_CMD }} --arch ia32 - - if: matrix.os == 'windows-latest' - run: ${{ env.ELECTRON_PREBUILD_CMD }} --arch ia32 - - if: matrix.os == 'macos-latest' + - if: runner.os == 'macOS' run: ${{ env.NODE_PREBUILD_CMD }} --arch arm64 - - if: matrix.os == 'macos-latest' + - if: runner.os == 'macOS' run: ${{ env.ELECTRON_PREBUILD_CMD }} --arch arm64 - run: ${{ env.NODE_PREBUILD_CMD }} - run: ${{ env.ELECTRON_PREBUILD_CMD }}