Skip to content

Commit 6c0bb19

Browse files
committed
Fix anaconda upload: use env token instead of -t flag, standardize command format
1 parent 6963fcb commit 6c0bb19

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/_python-conda-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
shell: bash -l {0}
6767
run: |
6868
PKG_PATH=$(conda build conda-recipe-matrix --output)
69-
anaconda upload -u quantdiy $PKG_PATH --label main --force
69+
anaconda upload -u quantdiy --label main --force $PKG_PATH
7070
7171
- name: Upload Conda package as Release Candidate
7272
if: github.ref == 'refs/heads/anaconda-integration' && github.event_name == 'push'
@@ -75,6 +75,6 @@ jobs:
7575
shell: bash -l {0}
7676
run: |
7777
PKG_PATH=$(conda build conda-recipe-matrix --output)
78-
anaconda upload -t $ANACONDA_API_TOKEN -u quantDIY --label rc --force $PKG_PATH
78+
anaconda upload -u quantDIY --label rc --force $PKG_PATH
7979
echo "✅ QuantX Release Candidate published to Anaconda!"
8080
echo "🚀 Install with: conda install -c quantDIY/label/rc quantx"

0 commit comments

Comments
 (0)