Skip to content

Use HTML picture tag to control which logo gets shown on PyPI (#133) #13

Use HTML picture tag to control which logo gets shown on PyPI (#133)

Use HTML picture tag to control which logo gets shown on PyPI (#133) #13

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
tags:
- v*
jobs:
build-wheel:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Build wheel
run: |
pip install build twine
python -m build
python -m twine check dist/*
- name: Upload Python package dist artifacts
uses: actions/upload-artifact@v4
with:
name: python-package-dist
path: dist
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
needs: build-wheel
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
environment:
name: pypi
url: https://pypi.org/p/surfactant
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Download Python package dist artifacts
uses: actions/download-artifact@v4
with:
name: python-package-dist
path: dist
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1