Skip to content

update-version-116.0.1 #80

update-version-116.0.1

update-version-116.0.1 #80

Workflow file for this run

name: Publish to pypi
on:
workflow_dispatch:
push:
tags:
- 'v*'
jobs:
publish-to-pypi:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/project/igvf-async-client/
permissions:
id-token: write
actions: read
contents: read
pages: write
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install and build
run: |
python -m pip install --upgrade pip
pip install build
python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@v1.12.4