From c4a7961a05ad5b93448348bba6b1ec21e8e2d246 Mon Sep 17 00:00:00 2001 From: Dr-Electron Date: Tue, 16 Jan 2024 11:48:34 +0100 Subject: [PATCH] Remove unneeded stuff --- .github/workflows/bindings-nodejs-publish.yml | 8 +------- .github/workflows/bindings-python-publish.yml | 8 -------- .github/workflows/bindings-wasm-publish.yml | 6 ------ .github/workflows/cli-publish.yml | 8 +------- 4 files changed, 2 insertions(+), 28 deletions(-) diff --git a/.github/workflows/bindings-nodejs-publish.yml b/.github/workflows/bindings-nodejs-publish.yml index 3a5f76218b..934b541d7e 100644 --- a/.github/workflows/bindings-nodejs-publish.yml +++ b/.github/workflows/bindings-nodejs-publish.yml @@ -46,12 +46,6 @@ jobs: - name: Print Cargo.toml run: cat Cargo.toml - - name: Publish nodejs bindings to NPM - shell: sh - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - run: npm publish --access public - nodejs-binding-prebuild: runs-on: ${{ matrix.os }} needs: publish-nodejs @@ -61,7 +55,7 @@ jobs: # The GitHub hosted Windows 2022 image comes with Visual Studio 2022, but node-gyp # (which is used by neon-sys) sadly fails to recognize it. As a mitigation, we still run the # tests on Windows 2019, until we can figure out a way to fix the problem. - os: [ubuntu-20.04, macos-13, windows-2019] + os: [ubuntu-20.04] node-version: ["18.x"] steps: diff --git a/.github/workflows/bindings-python-publish.yml b/.github/workflows/bindings-python-publish.yml index 00a24fa7cc..a64532cc3c 100644 --- a/.github/workflows/bindings-python-publish.yml +++ b/.github/workflows/bindings-python-publish.yml @@ -169,11 +169,3 @@ jobs: - uses: actions/setup-python@v4 with: python-version: "3.10" - - - name: Publish to PyPI - env: - TWINE_USERNAME: __token__ - TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} - run: | - pip install --upgrade twine - twine upload --skip-existing wheels/* diff --git a/.github/workflows/bindings-wasm-publish.yml b/.github/workflows/bindings-wasm-publish.yml index 8640c86540..175c29974b 100644 --- a/.github/workflows/bindings-wasm-publish.yml +++ b/.github/workflows/bindings-wasm-publish.yml @@ -42,12 +42,6 @@ jobs: - name: Build project run: yarn build - - name: Publish WASM bindings to NPM - shell: sh - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - run: npm publish --access public - - name: Prepare Github release id: prepare_release run: | diff --git a/.github/workflows/cli-publish.yml b/.github/workflows/cli-publish.yml index afa18e5ba5..d0b5bcd3f9 100644 --- a/.github/workflows/cli-publish.yml +++ b/.github/workflows/cli-publish.yml @@ -42,17 +42,11 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest] include: - os: ubuntu-latest identifier: linux ext: "" - - os: macos-latest - identifier: macos - ext: "" - - os: windows-latest - identifier: windows - ext: .exe steps: - uses: actions/checkout@v3