Skip to content

feat: add forecast bias metric (#122) #46

feat: add forecast bias metric (#122)

feat: add forecast bias metric (#122) #46

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@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
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@8a08d616893759ef8e1aa1f2785787c0b97e20d6 # v1.10.0