Skip to content

Client Build and Publish #2

Client Build and Publish

Client Build and Publish #2

Workflow file for this run

name: Client Build and Publish
on:
workflow_dispatch:
jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/django-livefield
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Poetry
run: |
make poetry
- name: Install dependencies
run: |
make install-build
- name: Build package
run: |
make build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1