Skip to content

chore: v0.6.0 (#464) #29

chore: v0.6.0 (#464)

chore: v0.6.0 (#464) #29

Workflow file for this run

name: Upload Python Packages
on:
push:
tags: ['v*']
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Python
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # 5.2.0
with:
python-version: '3.10'
- name: Install dependencies
run: python -m pip install --upgrade pip && pip install build
- name: Build nixtla package
run: python -m build
- name: Publish nixtla package
uses: pypa/gh-action-pypi-publish@8a08d616893759ef8e1aa1f2785787c0b97e20d6 # v1.10.0