Skip to content

Commit

Permalink
debug: conda init
Browse files Browse the repository at this point in the history
  • Loading branch information
laiwenzh committed Feb 6, 2025
1 parent 1f0048d commit 76c8a1a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ jobs:
- name: Build tgz package
run: |
source /root/.bashrc
source /miniconda/etc/profile.d/conda.sh
if [ -f "/miniconda/etc/profile.d/conda.sh" ]; then
source /miniconda/etc/profile.d/conda.sh
fi
source activate py310
git fetch --tags
Expand Down Expand Up @@ -128,6 +130,10 @@ jobs:
- name: Build manylinux wheels
run: |
if [ -f "/miniconda/etc/profile.d/conda.sh" ]; then
source /miniconda/etc/profile.d/conda.sh
fi
git fetch --tags
TAG_NAME=$(git describe --tags $(git rev-list --tags --max-count=1))
VERSION_NUMBER=$(echo "$TAG_NAME" | sed 's/^v//')
Expand Down

0 comments on commit 76c8a1a

Please sign in to comment.