Skip to content

Commit

Permalink
devops: devops attempt to fix release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Nov 7, 2024
1 parent fe74a44 commit 582bfd7
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 @@ -6,6 +6,7 @@ on:
jobs:
deploy-conda:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
Expand All @@ -24,7 +25,7 @@ jobs:
# Required for conda-incubator/setup-miniconda@v3
shell: bash -el {0}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get conda
Expand All @@ -43,7 +44,8 @@ jobs:
if [ "${{ matrix.target-platform }}" == "osx-arm64" ]; then
conda build --user microsoft . -m conda_build_config_osx_arm64.yaml
elif [ "${{ matrix.target-platform }}" == "linux-aarch64" ]; then
conda install cross-python_linux-aarch64
# Needs to be pinned until https://github.com/conda-forge/cross-python-feedstock/issues/93 is resolved.
conda install cross-python_linux-aarch64=3.12=47_cpython
conda build --user microsoft . -m conda_build_config_linux_aarch64.yaml
else
conda build --user microsoft .
Expand Down

0 comments on commit 582bfd7

Please sign in to comment.