Skip to content

build: Release 0.34.1 and delete tmp-openedx-learning #83

build: Release 0.34.1 and delete tmp-openedx-learning

build: Release 0.34.1 and delete tmp-openedx-learning #83

Workflow file for this run

name: Publish package to PyPI
on:
push:
tags:
- '*'
jobs:
push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: setup python
uses: actions/setup-python@v6
with:
python-version: 3.11
- name: Install pip
run: pip install -r requirements/pip.txt
- name: Build the package (openedx-core)
run: python setup.py sdist bdist_wheel
- name: Publish openedx-core to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_UPLOAD_TOKEN }}