This repository was archived by the owner on Dec 17, 2025. It is now read-only.
Build and upload conda packages #4
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build and upload conda packages | |
| # Triggered a new tag starting with "v" is pushed | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix .os }} | |
| strategy: | |
| matrix: | |
| # https://github.com/s-weigand/setup-conda/issues/432 | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: conda-incubator/setup-miniconda@v3 | |
| with: | |
| auto-update-conda: true | |
| - name: Conda info | |
| shell: bash -el {0} | |
| run: conda info | |
| - name: Install dependencies | |
| run: | | |
| conda install conda-build anaconda-client -y | |
| - name: Bulid and upload | |
| working-directory: python | |
| env: | |
| ANACONDA_API_TOKEN: ${{secrets.ANACONDA_TOKEN}} | |
| run: | | |
| python3 --version | |
| conda config --set anaconda_upload yes | |
| conda build conda-recipe --user SpM-lab |