Skip to content

(patch): removed Plotly prerelease, added timestamp, increased DX cli… #52

(patch): removed Plotly prerelease, added timestamp, increased DX cli…

(patch): removed Plotly prerelease, added timestamp, increased DX cli… #52

Workflow file for this run

name: Publish Python 🐍 distributions 📦 to PyPI
on:
push:
tags:
- '*'
permissions:
contents: read
id-token: write # Add this line to grant the workflow permission to request an OIDC token
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install pypa/build
run: |
python -m pip install build --user
- name: Build a binary wheel and a source tarball
run: |
python -m build --sdist --wheel --outdir dist/ .
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1