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 f7e79df commit 4941fdd
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/FEZrs_Conda_Publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ jobs:
conda install -y conda-build anaconda-client
- name: Build Conda package
run: |
export PATH="$HOME/miniconda3/bin:$PATH"
run: | # Fixed indentation
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
# 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/
cat VERSION # Debugging: Print the VERSION file
conda build recipe/

- name: Upload Conda package to Anaconda
env:
Expand Down

0 comments on commit 4941fdd

Please sign in to comment.