Skip to content

0.1.1: The reserved size for the logger names auto-adjust to the long… #2

0.1.1: The reserved size for the logger names auto-adjust to the long…

0.1.1: The reserved size for the logger names auto-adjust to the long… #2

Workflow file for this run

name: Release
on:
push:
branches:
- '*'
tags:
- '*'
workflow_dispatch:
jobs:
build-and-publish:
runs-on: ubuntu-latest
# from https://docs.pypi.org/trusted-publishers/using-a-publisher/
# Specifying a GitHub environment is optional, but strongly encouraged
environment: release
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: pypa/gh-action-pypi-publish@release/v1
with:
skip-existing: true