Skip to content

Merge pull request #9 from django-components/dependabot/pip/tox-4.25.0 #2

Merge pull request #9 from django-components/dependabot/pip/tox-4.25.0

Merge pull request #9 from django-components/dependabot/pip/tox-4.25.0 #2

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- '*'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
if: github.repository == 'django-components/djc-ext-pydantic'
steps:
- name: Checkout the repo
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- 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
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}