Skip to content

Commit

Permalink
Update anaconda token name
Browse files Browse the repository at this point in the history
  • Loading branch information
smcolby committed Dec 19, 2024
1 parent 4dc9932 commit f9a3d22
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,17 @@ jobs:
with:
# Needs to be unique for each matrix entry
artifact-name: isicle-${{ matrix.target-platform }}
build-args: --target-platform ${{ matrix.target-platform }} --variant-config conda.recipe/variants.yaml --output-dir build/ -c conda-forge -c bioconda
recipe-path: conda.recipe/recipe.yaml
build-args: |
--target-platform ${{ matrix.target-platform }}
--variant-config conda.recipe/variants.yaml
--output-dir build/
-c conda-forge
-c bioconda
- name: Upload conda package
env:
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_TOKEN }}
ANACONDA_API_KEY: ${{ secrets.ANACONDA_TOKEN }}
run: |
for pkg in $(find build/ -type f \( -name "*.conda" -o -name "*.tar.bz2" \) ); do
echo "Uploading ${pkg}"
Expand Down

0 comments on commit f9a3d22

Please sign in to comment.