Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-${{ hashFiles('setup.py') }}
key: ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-${{ hashFiles('pyproject.toml') }}
restore-keys: ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-
- uses: actions/checkout@v4
with:
Expand All @@ -37,10 +37,9 @@ jobs:
with:
python-version: ${{ matrix.PYTHON_VERSION }}
architecture: "x64"
- run: python -m pip install --upgrade pip setuptools wheel twine
- run: python -m pip install --upgrade pip build twine
- name: Build and publish python-language-server
run: |
python setup.py bdist_wheel --universal
python setup.py sdist
python -m build
python -m twine check dist/*
python -m twine upload dist/*