Skip to content

Publish

Publish #5

Workflow file for this run

name: Publish
on: create
jobs:
build:
runs-on: ubuntu-latest
if: github.event.ref_type == 'tag'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build, Test, Lint
uses: chris48s/python-package-shared@main
with:
python-version: '3.8'
pre-install: poetry
- uses: actions/upload-artifact@v4
with:
path: ./dist
publish:
needs: build
runs-on: ubuntu-latest
if: github.event.ref_type == 'tag'
permissions:
contents: none
id-token: write # required for trusted publishing
environment: publish
steps:
- uses: actions/download-artifact@v3
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: artifact/
print-hash: true