Skip to content

Commit

Permalink
ci: upgrade publish_pypi to ubuntu-latest and python 3.12 (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
Danyal-Faheem authored and regisb committed Oct 18, 2024
1 parent 5f1e052 commit e250de5
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/publish_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,19 @@ on:
jobs:

push:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/project/openedx-scorm-xblock

steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: setup python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.12

- name: Install setup tool and wheel
run: pip install setuptools wheel
Expand All @@ -25,7 +29,4 @@ jobs:
run: python setup.py sdist bdist_wheel

- name: Publish to PyPi
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_UPLOAD_TOKEN }}
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit e250de5

Please sign in to comment.