Skip to content

Commit 9bf307b

Browse files
Fix upload of Conda package to prefix (#2259)
1 parent b755c80 commit 9bf307b

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

.github/workflows/nightly.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,10 @@ jobs:
1717
with:
1818
recipe-path: .github/ci/recipe.yaml
1919

20-
- name: Upload all packages
21-
shell: bash
22-
run: |
23-
shopt -s nullglob
24-
EXIT_CODE=0
20+
- run: |
2521
for pkg in $(find output -type f \( -name "*.conda" -o -name "*.tar.bz2" \) ); do
26-
if ! rattler-build upload prefix -c parcels "${pkg}"; then
27-
EXIT_CODE=1
28-
fi
22+
echo "Uploading ${pkg}"
23+
rattler-build upload prefix -c parcels "${pkg}"
2924
done
30-
exit $EXIT_CODE
25+
env:
26+
PREFIX_API_KEY: ${{ secrets.PREFIX_API_KEY }}

0 commit comments

Comments
 (0)