Skip to content

Merge pull request #1 from kibi2/refactor/align-with-tir-gfm-lite #2

Merge pull request #1 from kibi2/refactor/align-with-tir-gfm-lite

Merge pull request #1 from kibi2/refactor/align-with-tir-gfm-lite #2

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- "v*"
jobs:
publish:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- run: |
python -m pip install --upgrade pip
pip install build
- run: python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1