Skip to content

Commit

Permalink
CI: publish fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kpsherva committed Jul 17, 2024
1 parent 0245821 commit 97b2a3f
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,24 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 2.7
python-version: 3.9

- name: Install dependencies
run: |
python -m pip install --upgrade "pip>=20,<21" "setuptools>=40,<46" wheel
python -m pip install --upgrade pip
pip install setuptools wheel babel
- name: Build package
# Remove `compile_catalog` if the package has no translations.
run: |
python setup.py sdist bdist_wheel
- name: Publish on PyPI
python setup.py compile_catalog sdist bdist_wheel
- name: Publish
uses: pypa/[email protected]
with:
user: __token__
# The token is provided by the CERNDocumentServer organization
password: ${{ secrets.pypi_token }}

0 comments on commit 97b2a3f

Please sign in to comment.