Skip to content

Logger fixed and LDM TimestampITS #3

Logger fixed and LDM TimestampITS

Logger fixed and LDM TimestampITS #3

Workflow file for this run

name: Publish to PyPI
on:
push:
branches:
- master
jobs:
publish_pypi:
name: Publish Python Package to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Install dependencies
run: |
pip install -r requirements.txt
python -m pip install --upgrade build twine
- name: Build the package
run: python -m build
- name: Publish to PyPI
env:
TWINE_USERNAME: "__token__"
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: python -m twine upload dist/*