Skip to content

Bump to v1.4.7

Bump to v1.4.7 #46

Workflow file for this run

name: Build and upload conda packages
# Triggered a new tag starting with "v" is pushed
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ${{ matrix .os }}
strategy:
matrix:
# https://github.com/s-weigand/setup-conda/issues/432
os: [ubuntu-latest, windows-2019, macos-latest]
steps:
- uses: actions/checkout@v4
- 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
env:
ANACONDA_API_TOKEN: ${{secrets.ANACONDA_TOKEN}}
run: |
python3 --version
conda config --set anaconda_upload yes
conda build .conda --user SpM-lab