revise conda recipe and github actions to execute it #11
Workflow file for this run
This file contains 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: Conda Build | |
on: | |
pull_request: | |
push: | |
branches: | |
- stable | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Conda with Python 3.7 | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: true | |
conda-solver: libmamba | |
auto-activate-base: true | |
activate-environment: "" | |
- name: Install Build Tools | |
run: conda install anaconda-client conda-build | |
- name: Configure Auto-Upload | |
if: github.ref == 'refs/heads/stable' | |
run: | | |
conda config --set anaconda_upload yes | |
- name: Build Binary | |
env: | |
CONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }} | |
run: | | |
conda config --add channels cantera | |
conda config --add channels rmg | |
conda build --token $CONDA_TOKEN --user rmg .conda |