We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7253c33 commit be34a42Copy full SHA for be34a42
1 file changed
.github/workflows/conda_release.yml
@@ -15,8 +15,9 @@ jobs:
15
steps:
16
- uses: conda-incubator/setup-miniconda@v3
17
with:
18
- miniconda-version: "latest"
19
- channels: bioconda, conda-forge, defaults
+ mamba-version: "*"
+ channels: conda-forge, defaults
20
+ channel-priority: true
21
use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly!
22
auto-update-conda: true
23
auto-activate-base: true
@@ -91,5 +92,5 @@ jobs:
91
92
env:
93
ANACONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }}
94
run: |
- PACKAGE=$(ls conda-build-artifacts/linux-64/${GITHUB_REPOSITORY##*/}-${{ steps.vars.outputs.VERSION }}-*.tar.bz2)
95
+ PACKAGE=$(ls conda-build-artifacts/linux-64/cpp-python-tool-template-${{ steps.vars.outputs.VERSION }}-*.tar.bz2)
96
anaconda -t $ANACONDA_TOKEN upload $PACKAGE --user $ANACONDA_USER --label main --force
0 commit comments