-
Notifications
You must be signed in to change notification settings - Fork 2
60 lines (58 loc) · 1.91 KB
/
publish.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Publish to Anaconda.org
on:
release:
types:
- published
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
tags:
description: 'manual run'
jobs:
publish:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: False
matrix:
os: [windows-latest]
python-version: ['3.12']
# python-version: ['3.10', '3.11', '3.12']
# os: [ubuntu-latest, windows-latest, macOS-14]
# include:
# - python-version: 3.9
# os: windows-latest
defaults: # https://github.com/marketplace/actions/setup-miniconda#use-a-default-shell
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- name: Setup miniconda # https://github.com/marketplace/actions/setup-miniconda
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
channels: conda-forge,ncb
python-version: 3.12
auto-activate-base: false
activate-environment: anaconda-client-env
environment-file: build_env.yml
condarc-file: condarc.yml
- name: Build
run: |
mkdir ./build
conda build conda/xarray-behave --no-anaconda-upload --python ${{ matrix.python-version }} --output-folder ./build
- name: Test
run: |
conda deactivate
conda create -n xb_test xarray-behave=0.35.7 -c ./build -c local -c conda-forge -c ncb -y
conda activate xb_test
python -c "import xarray_behave; print(xarray_behave.__version__)"
python -c "import xarray_behave.gui.app"
# xb --help
- name: Upload
run: |
conda build conda/xarray-behave --no-test --python ${{ matrix.python-version }} --output-folder ./build --skip-existing --user ncb --token ${{ secrets.ANACONDA_TOKEN }}
env:
ANACONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }}