chore: Update the FES example to the latest library version #20
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: Anaconda Upload | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
boa: | |
name: ${{ matrix.python-version }}-${{ matrix.os }} | |
runs-on: | |
- ${{ matrix.os }} | |
strategy: | |
max-parallel: 5 | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10'] | |
os: ['ubuntu-latest', 'macos-latest', 'windows-2019'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Miniconda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
mamba-version: "*" | |
auto-update-conda: false | |
auto-activate-base: false | |
activate-environment: FES | |
environment-file: conda/environment.yml | |
- name: Build | |
shell: bash -l {0} | |
run: | | |
export ANACONDA_API_TOKEN=${{ secrets.ANACONDA_TOKEN }} | |
conda mambabuild --output-folder boa-bld conda/ | |
anaconda upload --force --no-progress --label main boa-bld/*/*.tar.bz2 |