-
-
Notifications
You must be signed in to change notification settings - Fork 14
50 lines (48 loc) · 1.54 KB
/
conda-publish.yml
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
name: Upload Python Package to Conda
on:
push:
branches:
- publish-to-conda
jobs:
publish:
runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
steps:
- uses: actions/checkout@v3
# - name: Set up Conda
# uses: conda-incubator/setup-miniconda@v2
# with:
# python-version: ${{ matrix.python-version }}
# auto-activate-base: false
# auto-update-conda: true
# miniforge-variant: Mambaforge
# miniforge-version: latest
# activate-environment: conda-env
# environment-file: conda/conda-env.yml
# show-channel-urls: true
# use-only-tar-bz2: true
# - name: Install conda-forge CI
# run: conda install -c conda-forge conda-smithy conda-forge-pinning
# - name: Build package
# run: conda-smithy rerender
# - name: Commit changes
# run: |
# git config --local user.email "[email protected]"
# git config --local user.name "GitHub Action"
# git add -A
# git commit -m "Re-render recipe"
# git push
- name: Set up Conda
run: |
conda install -c conda-forge conda-build
- name: Publish to conda
run: |
cd conda
conda build -c conda-forge --output-folder . .
conda convert -p osx-64 linux-64/*.tar.bz2
conda convert -p win-64 linux-64/*.tar.bz2
anaconda upload --label main osx-64/*.tar.bz2
anaconda upload --label main linux-64/*.tar.bz2
anaconda upload --label main win-64/*.tar.bz2