Skip to content

Added notes about a short training run #14

Added notes about a short training run

Added notes about a short training run #14

Workflow file for this run

name: Publish
on:
push:
tags:
- 'v*'
jobs:
build:
name: Build and release the installable python package.
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: |
setup.py
- name: Install poetry
run: |
python -m pip install poetry
- name: Init
run: make init-poetry
- name: Build
run: poetry build
- name: Publish
env:
USERNAME: ${{ secrets.PYPI_USERNAME }}
TOKEN: ${{ secrets.PYPI_TOKEN }}
run: poetry publish -u $USERNAME -p $TOKEN