Skip to content

aspxstats v0.2.0

aspxstats v0.2.0 #11

Workflow file for this run

name: release
on:
release:
types: [published]
permissions:
contents: read
jobs:
build-and-publish:
name: build-and-publish
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8
- 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 to PyPI
uses: pypa/[email protected]
with:
password: ${{ secrets.PYPI_API_TOKEN }}