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 b755c80 commit 9bf307bCopy full SHA for 9bf307b
.github/workflows/nightly.yml
@@ -17,14 +17,10 @@ jobs:
17
with:
18
recipe-path: .github/ci/recipe.yaml
19
20
- - name: Upload all packages
21
- shell: bash
22
- run: |
23
- shopt -s nullglob
24
- EXIT_CODE=0
+ - run: |
25
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
+ echo "Uploading ${pkg}"
+ rattler-build upload prefix -c parcels "${pkg}"
29
done
30
- exit $EXIT_CODE
+ env:
+ PREFIX_API_KEY: ${{ secrets.PREFIX_API_KEY }}
0 commit comments