Skip to content

bump

bump #15

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
build-and-publish:
runs-on: ubuntu-latest
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install build dependencies
run: python -m pip install -U setuptools wheel build
- name: Build
run: python -m build .
- name: Publish
uses: trail-of-forks/gh-action-pypi-publish@ww/attestations
with:
repository-url: https://test.pypi.org/legacy/
skip-existing: true
attestations: true
verbose: true