Skip to content

Commit

Permalink
Try setting osx-arm64 subdir
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmoore committed Feb 5, 2024
1 parent 51cc54a commit 7c7ba1d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/condabuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ jobs:
echo "condabld=c:\\conda-bld" >> $GITHUB_OUTPUT
else
echo "condabld=$HOME/conda-bld" >> $GITHUB_OUTPUT
if [ ${{ matrix.os }} = macos-14 ]; then
# Surprising that this is required. Locally, the directory includes "arm" automatically
conda config --env --set subdir "osx-arm64"
fi
fi
shell: bash

Expand All @@ -55,7 +59,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: "${{ matrix.os }}"
path: "${{ steps.condablddir.outputs.condabld }}/*-64/bioformats2raw-*"
path: "${{ steps.condablddir.outputs.condabld }}/*/bioformats2raw-*.tar.bz2"
if-no-files-found: error

upload:
Expand Down

0 comments on commit 7c7ba1d

Please sign in to comment.