Skip to content

Publish alpha version of Parcels #3

Publish alpha version of Parcels

Publish alpha version of Parcels #3

Workflow file for this run

name: Publish alpha version of Parcels
on:
workflow_dispatch:
permissions:
contents: read
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build conda package
uses: prefix-dev/[email protected]
with:
recipe-path: .github/ci/recipe.yaml
- run: |
for pkg in $(find output -type f \( -name "*.conda" -o -name "*.tar.bz2" \) ); do
echo "Uploading ${pkg}"
rattler-build upload prefix -c parcels "${pkg}"
done
env:
PREFIX_API_KEY: ${{ secrets.PREFIX_API_KEY }}