Skip to content

Bump to 0.1.15

Bump to 0.1.15 #9

Workflow file for this run

name: release
on:
push:
branches:
- main
workflow_dispatch:
jobs:
pypi-publish:
name: pypi-publish
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/cmdbench
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- 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 --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1