Skip to content

Commit

Permalink
Update FEZrs_Conda_Publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aradfarahani authored Mar 1, 2025
1 parent 4c0be46 commit 1266dab
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/FEZrs_Conda_Publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,17 @@ jobs:
conda install -y conda-build anaconda-client
- name: Build Conda package
run: |
export PATH="$HOME/miniconda3/bin:$PATH"
conda build recipe/
run: |
export PATH="$HOME/miniconda3/bin:$PATH"
# Ensure the VERSION file exists before building
if [ ! -f VERSION ]; then
echo "Error: VERSION file is missing!"
exit 1
fi
cat VERSION # Debugging: Print the VERSION file
conda build recipe/
- name: Upload Conda package to Anaconda
env:
Expand Down

0 comments on commit 1266dab

Please sign in to comment.