Skip to content

Commit

Permalink
chore: activate conda venv before running action
Browse files Browse the repository at this point in the history
  • Loading branch information
marek-mihok committed Feb 2, 2024
1 parent 7403052 commit b8b74a9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/publish-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ jobs:
with:
python-version: 3.8

- name: Create and activate conda venv
run: |
python -m pip install --upgrade pip
pip install conda
conda create -n conda-env python=3.8
conda activate conda-env
- name: Publish to Conda
uses: amauryval/publish_conda_package_action@2.0.3
with:
Expand Down

0 comments on commit b8b74a9

Please sign in to comment.