Skip to content

Commit

Permalink
Remove unneeded stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr-Electron committed Jan 16, 2024
1 parent 2b44b88 commit c4a7961
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 28 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/bindings-nodejs-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down
8 changes: 0 additions & 8 deletions .github/workflows/bindings-python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
6 changes: 0 additions & 6 deletions .github/workflows/bindings-wasm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/cli-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c4a7961

Please sign in to comment.