Skip to content

TLJH Release, no changes to JMP 1 #2

TLJH Release, no changes to JMP 1

TLJH Release, no changes to JMP 1 #2

# Copyright 2024 The MathWorks, Inc.
name: Upload Python Package for tljh-matlab
on:
release:
types: [published]
permissions:
contents: read
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
cd ./install_guides/the-littlest-jupyterhub/tljh-matlab
pip install build
- name: Build package
run: |
cd ./install_guides/the-littlest-jupyterhub/tljh-matlab
python -m build
- name: Publish to PyPI.
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: install_guides/the-littlest-jupyterhub/tljh-matlab