2.0.0 #2
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
# See https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/ | |
# for a detailed guide | |
name: Publish to PyPI | |
on: | |
release: | |
types: [published] | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
build_and_publish: | |
runs-on: ubuntu-latest | |
environment: | |
name: publish | |
url: https://pypi.org/project/wagtail-modeladmin | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install flit | |
python -m flit install --symlink | |
- name: Build | |
run: python -m flit build | |
- name: Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |