Skip to content

v0.9.6 - fix Llama 3 tokenizer #36

v0.9.6 - fix Llama 3 tokenizer

v0.9.6 - fix Llama 3 tokenizer #36

Workflow file for this run

# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# https://www.seanh.cc/2022/05/21/publishing-python-packages-from-github-actions/
name: Publish to PyPI.org
on:
release:
types: [published]
permissions:
contents: read
jobs:
pypi:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # TODO: I forgot what this does, if anything
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip build
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1