Skip to content
This repository has been archived by the owner on Sep 25, 2024. It is now read-only.

Workflow file for this run

name: Publish Shikithon package to PyPI
on:
release:
types: [published]
jobs:
build-and-publish:
name: Build Shikithon distribution and publish to PyPI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: main
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}