Skip to content

feat: update version to 0.7.0 and enhance LSP functionality with new … #6

feat: update version to 0.7.0 and enhance LSP functionality with new …

feat: update version to 0.7.0 and enhance LSP functionality with new … #6

Workflow file for this run

name: Build and Publish to PyPI
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+*"
jobs:
publish:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install build dependencies
run: |
python -m pip install --upgrade build
- name: Build package
run: python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1