Skip to content

[BUG FIX] Language menu is showing despite only one language configured #172

[BUG FIX] Language menu is showing despite only one language configured

[BUG FIX] Language menu is showing despite only one language configured #172

name: Publish Python 🐍 distributions 📦 to TestPyPI
on:
pull_request:
branches:
- master
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to TestPyPI
runs-on: ubuntu-latest
environment:
name: test
url: https://test.pypi.org/p/djangocms-versioning
permissions:
id-token: write
steps:
- uses: actions/checkout@v5
- name: Set up Python 3.13
uses: actions/setup-python@v6
with:
python-version: '3.13'
- name: Install pypa/build
run: >-
python -m
pip install
build
setuptools
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
skip_existing: true