Skip to content

Merge pull request #4 from mabel-dev/initial #5

Merge pull request #4 from mabel-dev/initial

Merge pull request #4 from mabel-dev/initial #5

Workflow file for this run

name: release
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
environment: release
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: deps
run: python -m pip install -U build
- name: build
run: python -m build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1