Skip to content

v0.2.3

v0.2.3 #44

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
defaults:
run:
shell: bash -l {0}
jobs:
release:
if: github.repository == 'Nixtla/utilsforecast'
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- name: Clone repo
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up python
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
with:
python-version: '3.10'
- name: Install build dependencies
run: python -m pip install build wheel
- name: Build distributions
run: python -m build -sw
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 # v1.9.0