Skip to content

Bump @vscode/vsce from 2.26.1 to 2.27.0 #228

Bump @vscode/vsce from 2.26.1 to 2.27.0

Bump @vscode/vsce from 2.26.1 to 2.27.0 #228

Workflow file for this run

---
name: release to PyPI
on:
push:
jobs:
pypi-publish:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies & build wheel
run: |
pipx install poetry
poetry install
poetry build
- name: Check the wheel
run: poetry run twine check dist/rpm_spec_language_server*whl
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
if: startsWith(github.ref, 'refs/tags')