Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 5 additions & 9 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,10 @@ jobs:
with:
recipe-path: .github/ci/recipe.yaml

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