v2.8.0 #30
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will upload a Python Package using Twine when a release is created | |
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#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. | |
name: Upload Python Package | |
on: | |
release: | |
types: [published] | |
permissions: | |
contents: read | |
jobs: | |
deploy-pypi: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Check versions | |
run: | | |
pip install -U pip requests | |
python3 .github/check_version.py | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install hatch==1.13.0 hatchling==1.25.0 | |
- name: Build package | |
run: hatch build -c | |
- name: Publish package | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_TOKEN }} | |
publish-to-conda: | |
runs-on: ubuntu-24.04 | |
needs: [ deploy-pypi ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Restore build | |
uses: actions/cache@v4 | |
with: | |
path: /tmp/conda-bld | |
key: build-conda-${{ github.sha }} | |
fail-on-cache-miss: true | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
activate-environment: codecarbon | |
miniforge-version: latest | |
python-version: 3.12 | |
use-mamba: true | |
- name: Install package | |
shell: bash -l {0} | |
run: mamba install --channel file:///tmp/conda-bld --channel codecarbon codecarbon | |
- name: Test conda package | |
shell: bash -l {0} | |
run: codecarbon --help | |
- name: Conda upload already build package | |
# This shell is made necessary by https://github.com/conda-incubator/setup-miniconda/issues/128 | |
shell: bash -l {0} | |
run: | | |
conda install --yes anaconda-client | |
anaconda -t ${{ secrets.ANACONDA_TOKEN }} upload --user codecarbon /tmp/conda-bld/noarch/codecarbon-* |