1.12.0 - Drop python 3.7, add Django 5.0, Python 3.12 #28
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |