We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 572087a commit cde34c2Copy full SHA for cde34c2
.github/workflows/push_conda.yml
@@ -60,15 +60,19 @@ jobs:
60
conda mambabuild . -c conda-forge -c bioconda
61
- name: Upload package to Khanlab channel
62
shell: bash -l {0}
63
+ env:
64
+ ANACONDA_HOSTNAME: "gha-${{ github.run_id }}"
65
run: |-
66
conda activate base
67
68
# delete any leftover token or netrc entry
69
rm -f ~/.anaconda/token ~/.netrc || true
-
70
+
71
anaconda login \
72
--username ${{ secrets.ANACONDA_USERNAME }} \
- --password ${{ secrets.ANACONDA_PASSWORD }}
73
+ --password ${{ secrets.ANACONDA_PASSWORD }} \
74
+ --hostname "$ANACONDA_HOSTNAME"
75
76
anaconda upload "$PACKAGE_PATH" \
77
--label main \
78
--force \
0 commit comments