Skip to content

Update pygpsd version to 1.3.0 in pyproject.toml and uv.lock. #4

Update pygpsd version to 1.3.0 in pyproject.toml and uv.lock.

Update pygpsd version to 1.3.0 in pyproject.toml and uv.lock. #4

Workflow file for this run

name: Build and publish to PyPI on tag
on:
push:
tags:
- "v*"
workflow_dispatch: {}
permissions:
contents: read
jobs:
build-and-publish:
name: Build distributions and publish to PyPI
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write # needed for OIDC-based Trusted Publishing
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up uv and Python
uses: astral-sh/setup-uv@v4
with:
python-version: "3.10"
- name: Build sdist and wheel with uv
run: uv build
# Publish to PyPI via Trusted Publishing (OIDC)
- name: Publish to PyPI (Trusted Publishing)
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: dist