Skip to content

1.12.0 - Drop python 3.7, add Django 5.0, Python 3.12 #28

1.12.0 - Drop python 3.7, add Django 5.0, Python 3.12

1.12.0 - Drop python 3.7, add Django 5.0, Python 3.12 #28

Workflow file for this run

name: Publish django-auth-adfs to PyPI 📦
on:
release:
types: [published]
jobs:
build-and-publish:
name: Build and publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install poetry
uses: snok/install-poetry@v1
- name: Build and publish
run: |
poetry config pypi-token.pypi ${{ secrets.pypi_password }}
poetry publish --build --no-interaction