Skip to content

Feature: Data Sources (#1) #2

Feature: Data Sources (#1)

Feature: Data Sources (#1) #2

Workflow file for this run

name: Publish Python 🐍 distributions 📦 to PyPI
on:
push:
tags:
- "*"
jobs:
build-n-publish:
runs-on: ubuntu-latest
name: Build and publish Python 🐍 distributions 📦 to PyPI
environment:
name: pypi
url: https://pypi.org/p/pygments-shell-console
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Set up Python 3.8
uses: actions/checkout@master
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- 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 package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1