Skip to content

Commit

Permalink
Add osx-arm64 and linux-aarch64 conda package builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias-Fischer authored Dec 26, 2023
1 parent f371be9 commit c139df7
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,17 @@ jobs:
deploy-conda:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
include:
- os: ubuntu-latest
target-platform: linux-64
- os: ubuntu-latest
target-platform: linux-aarch64
- os: windows-latest
target-platform: win-64
- os: macos-latest
target-platform: osx-64
- os: macos-latest
target-platform: osx-arm64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand All @@ -24,4 +34,4 @@ jobs:
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
run: |
conda config --set anaconda_upload yes
conda build --user microsoft .
conda build --target-platform=${{ matrix.target-platform }} --user microsoft .

0 comments on commit c139df7

Please sign in to comment.