Skip to content

fix: update Pica AuthKit link in README.md for accuracy #2

fix: update Pica AuthKit link in README.md for accuracy

fix: update Pica AuthKit link in README.md for accuracy #2

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- '*'
jobs:
build-and-publish:
name: Build and publish Python package
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build package
run: python -m build
- name: Check distribution
run: twine check dist/*
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
skip-existing: true