Skip to content

Commit

Permalink
fix(ci): build above the recipe folder
Browse files Browse the repository at this point in the history
  • Loading branch information
philtweir committed Mar 4, 2024
1 parent e2b5e62 commit e71f4df
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,15 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Template conda recipe
run: pip install jinja2 toml && python .github/workflows/generate_recipe.py > recipe.yaml
run: pip install jinja2 toml && python .github/workflows/generate_recipe.py > ../recipe.yaml
- name: Build conda package
uses: prefix-dev/[email protected]
env:
CONDA_BLD_PATH: ../output
with:
# needs to be unique for each matrix entry
artifact-name: package-${{ matrix.target-platform }}
recipe-path: recipe.yaml
recipe-path: ../recipe.yaml
build-args: --target-platform ${{ matrix.target-platform }}${{ matrix.target-platform == 'linux-aarch64' && ' --no-test' || '' }}
sdist:
runs-on: ubuntu-latest
Expand Down

0 comments on commit e71f4df

Please sign in to comment.