Skip to content

Commit

Permalink
Merge pull request #17 from eduNEXT/cag/pypi
Browse files Browse the repository at this point in the history
Cag/pypi
  • Loading branch information
Ian2012 authored Nov 25, 2024
2 parents 0caafed + c2603ad commit a633da1
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/pypi-publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Publish package to PyPi

on:
release:
types: [published]

jobs:

push:
runs-on: ubuntu-latest
if: !startsWith(github.head_ref, 'harmony-chart')
defaults:
run:
working-directory: ./tutor-contrib-harmony-plugin

steps:
- name: Checkout
uses: actions/checkout@v2
- name: setup python
uses: actions/setup-python@v2
with:
python-version: 3.12

- name: Install Dependencies
run: pip install setuptools wheel

- name: Build package
run: python setup.py sdist bdist_wheel

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

0 comments on commit a633da1

Please sign in to comment.