Skip to content

Commit

Permalink
Update python-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
abhijeet-plato authored Oct 16, 2023
1 parent 203b40a commit d20ae1c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,12 @@ jobs:
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda config --set always_yes yes --set changeps1 no
conda update -q conda
- name: Install conda-build # Add this step
- name: Install conda-build
run: conda install conda-build
- name: Install pip via conda
run: conda install pip --yes
- name: Install Python packages from requirements.txt
run: pip install -r requirements.txt
- name: Build and Publish to Anaconda
env:
ANACONDA_USERNAME: ${{ secrets.ANACONDA_USERNAME }}
Expand All @@ -126,3 +130,4 @@ jobs:
conda build .
anaconda login --user $ANACONDA_USERNAME --password $ANACONDA_PASSWORD
anaconda upload $HOME/miniconda/conda-bld/**/artifician*.tar.bz2

0 comments on commit d20ae1c

Please sign in to comment.