Skip to content

Bump socket.io from 4.6.1 to 4.7.5 #152

Bump socket.io from 4.6.1 to 4.7.5

Bump socket.io from 4.6.1 to 4.7.5 #152

Workflow file for this run

---
name: PyPI
on: push
jobs:
build-n-publish:
name: Build and publish Python distribution to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Build a binary wheel and a source tarball
run: |
python -mpip install build
python -m build
working-directory: ./plugin
- name: Publish distribution to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@v1.8.14
with:
packages_dir: plugin/dist
password: ${{ secrets.PYPI_PASSWORD }}