Skip to content

Commit 7afde51

Browse files
authored
fix: corrected cd workflow (#8)
1 parent af2c9e5 commit 7afde51

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/cd.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ jobs:
3030
- name: Build package
3131
shell: bash -l {0}
3232
run: |
33-
conda create -n deploy_env python=3.12 build -c conda-forge -y
33+
conda create -n deploy_env python=3.12 pip -c conda-forge -y
3434
conda activate deploy_env
35+
pip install build
3536
python -m build -C--global-option=bdist_wheel -C--global-option=--build-number=0 --wheel
3637
3738
- name: Publish package

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "eolabtools"
77
description = "Collection of tools for data"
8-
version = "1.0.1"
8+
version = "1.0.2"
99
requires-python = ">=3.8.13"
1010
dependencies = []
1111
readme = "README.md"

0 commit comments

Comments
 (0)